Skip to content

Commit

Permalink
chore: increase test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
d-fischer committed Sep 4, 2023
1 parent f76484a commit 74b5681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/successful-files.test.ts
Expand Up @@ -100,7 +100,7 @@ describe('loads defined TS config path', () => {
test('async', async () => {
const result = await cosmiconfig('successful-files-tests').load(file);
checkResult(result);
}, 10000);
}, 20000);

test('sync', async () => {
const result = cosmiconfigSync('successful-files-tests').load(file);
Expand Down Expand Up @@ -169,7 +169,7 @@ describe('loads ESM from defined .ts config path (nearest package.json says it i
test('async', async () => {
const result = await cosmiconfig('successful-files-tests').load(file);
checkResult(result);
}, 10000);
}, 20000);
});

describe('loads CommonJS with its own dependency', () => {
Expand Down

0 comments on commit 74b5681

Please sign in to comment.