diff --git a/packages/application/src/__tests__/read-workbook.test.ts b/packages/application/src/__tests__/read-workbook.test.ts index 6a546c2..b33b19f 100644 --- a/packages/application/src/__tests__/read-workbook.test.ts +++ b/packages/application/src/__tests__/read-workbook.test.ts @@ -123,7 +123,7 @@ describe("readWorksheetMatrix", () => { await expect(readWorksheetMatrix(workbookPath, "Sheet1")).rejects.toThrow( `exceeds the ${MAX_DISPO_WORKBOOK_ROWS} row import limit`, ); - }); + }, 30000); it("rejects worksheets that exceed the column limit", async () => { const directory = await makeTempDirectory(); @@ -135,5 +135,5 @@ describe("readWorksheetMatrix", () => { await expect(readWorksheetMatrix(workbookPath, "Sheet1")).rejects.toThrow( `exceeds the ${MAX_DISPO_WORKBOOK_COLUMNS} column import limit`, ); - }); + }, 30000); });