diff --git a/packages/application/src/__tests__/read-workbook.test.ts b/packages/application/src/__tests__/read-workbook.test.ts index 1daa529..4aa1ebe 100644 --- a/packages/application/src/__tests__/read-workbook.test.ts +++ b/packages/application/src/__tests__/read-workbook.test.ts @@ -137,7 +137,7 @@ describe("readWorksheetMatrix", () => { await expect(readWorksheetMatrix(workbookPath, "Sheet1")).rejects.toThrow( `exceeds the ${MAX_DISPO_WORKBOOK_ROWS} row import limit`, ); - }, 30000); + }, 60000); it("rejects worksheets that exceed the column limit", async () => { const directory = await makeTempDirectory(); @@ -149,7 +149,7 @@ describe("readWorksheetMatrix", () => { await expect(readWorksheetMatrix(workbookPath, "Sheet1")).rejects.toThrow( `exceeds the ${MAX_DISPO_WORKBOOK_COLUMNS} column import limit`, ); - }, 30000); + }, 60000); describe("DISPO_IMPORT_DIR allowlist", () => { it("rejects absolute paths that escape the configured import dir", async () => {