Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed Dec 6, 2023
1 parent 194b048 commit 1d37c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/test/integration/6 - test-provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<vscode.TestRun> | undefined
Expand Down Expand Up @@ -109,5 +109,5 @@ suite('test provider tests', () => {
{ filepath: path.join(workspacePath, 'test/test1.cdc'), id: ':testPassing' }
])
assert.deepStrictEqual(failedTests, [])
}).timeout(5000)
}).timeout(20000)
})

0 comments on commit 1d37c33

Please sign in to comment.