From 74b5681d65765568c3e9b8b917390c15b6ca13ac Mon Sep 17 00:00:00 2001 From: Daniel Fischer Date: Mon, 4 Sep 2023 21:28:11 +0200 Subject: [PATCH] chore: increase test timeout --- test/successful-files.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/successful-files.test.ts b/test/successful-files.test.ts index 978bf0a..1d34936 100644 --- a/test/successful-files.test.ts +++ b/test/successful-files.test.ts @@ -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); @@ -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', () => {