From 1d37c33f8c40e2a8d518bde5839b71ca58fef1f0 Mon Sep 17 00:00:00 2001 From: Jordan Ribbink Date: Tue, 5 Dec 2023 22:19:48 -0800 Subject: [PATCH] increase timeout --- extension/test/integration/6 - test-provider.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extension/test/integration/6 - test-provider.test.ts b/extension/test/integration/6 - test-provider.test.ts index 674238a4..b1cfc5b6 100644 --- a/extension/test/integration/6 - test-provider.test.ts +++ b/extension/test/integration/6 - test-provider.test.ts @@ -78,7 +78,7 @@ suite('test provider tests', () => { { filepath: path.join(workspacePath, 'test/bar/test2.cdc'), id: ':testFailing', message: 'FAIL: Execution failed:\nerror: assertion failed\n --> 7465737400000000000000000000000000000000000000000000000000000000:8:2\n' }, { filepath: path.join(workspacePath, 'test/bar/test3.cdc'), id: ':testFailing', message: 'FAIL: Execution failed:\nerror: assertion failed\n --> 7465737400000000000000000000000000000000000000000000000000000000:4:2\n' } ]) - }).timeout(5000) + }).timeout(20000) test('runs individual test and reports results', async function () { let runSpy: sinon.SinonSpiedInstance | undefined @@ -109,5 +109,5 @@ suite('test provider tests', () => { { filepath: path.join(workspacePath, 'test/test1.cdc'), id: ':testPassing' } ]) assert.deepStrictEqual(failedTests, []) - }).timeout(5000) + }).timeout(20000) })