Skip to content

Commit

Permalink
fixes failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AimeurAmin committed Feb 10, 2025
1 parent 913f663 commit 4a6bba9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ describe('manuscript file', () => {
ComponentProps<typeof ManuscriptForm>['handleFileUpload']
> = jest.fn();

const mockFile = new File(['1'.repeat(1024 * 1024 * 25)], 'test.txt', {
const mockFile = new File(['1'.repeat(1024 * 1024 * 100)], 'test.txt', {
type: 'text/plain',
});

Expand Down Expand Up @@ -1291,7 +1291,7 @@ describe('key resource table', () => {
ComponentProps<typeof ManuscriptForm>['handleFileUpload']
> = jest.fn();

const mockFile = new File(['1'.repeat(1024 * 1024 * 25)], 'test.txt', {
const mockFile = new File(['1'.repeat(1024 * 1024 * 100)], 'test.txt', {
type: 'text/plain',
});

Expand Down Expand Up @@ -1480,7 +1480,7 @@ describe('additional files', () => {
ComponentProps<typeof ManuscriptForm>['handleFileUpload']
> = jest.fn();

const mockFile = new File(['1'.repeat(1024 * 1024 * 25)], 'test.txt', {
const mockFile = new File(['1'.repeat(1024 * 1024 * 100)], 'test.txt', {
type: 'text/plain',
});

Expand Down

0 comments on commit 4a6bba9

Please sign in to comment.