Skip to content

Commit 75842ab

Browse files
committed
fix(ext-driver-duckdb): increase testing time for beforehook
1 parent 96f111d commit 75842ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/extension-driver-duckdb/tests/duckdbDataSource.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ beforeAll(async () => {
3232
`insert into users values(${i + 4}, 'user${i}', 18000, false);`
3333
);
3434
}
35-
});
35+
}, 20000); // Inserting test data might takes some time
3636

3737
afterAll(async () => {
3838
if (fs.existsSync(testFile)) fs.unlinkSync(testFile);

0 commit comments

Comments
 (0)