Skip to content

Commit b3d7e78

Browse files
committed
Bump unit test timeout to 3 min
1 parent c13319d commit b3d7e78

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

extensions/ql-vscode/src/vscode-tests/no-workspace/query-results.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,10 @@ describe('query-results', () => {
150150
});
151151
});
152152

153-
it('should interpretResultsSarif', async () => {
153+
it('should interpretResultsSarif', async function() {
154+
// up to 3 minutes per test
155+
this.timeout(3 * 60 * 1000);
156+
154157
const spy = sandbox.mock();
155158
spy.returns({ a: '1234' });
156159
const mockServer = {

0 commit comments

Comments
 (0)