We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 03f5859 + 71daf0b commit ab0e8a0Copy full SHA for ab0e8a0
1 file changed
extensions/ql-vscode/src/vscode-tests/cli-integration/queries.test.ts
@@ -21,7 +21,7 @@ import { QueryRunner } from '../../queryRunner';
21
* Integration tests for queries
22
*/
23
describe('Queries', function() {
24
- this.timeout(20000);
+ this.timeout(20_000);
25
26
before(function() {
27
skipIfNoCodeQL(this);
@@ -42,7 +42,9 @@ describe('Queries', function() {
42
let qlFile: string;
43
44
45
- beforeEach(async () => {
+ beforeEach(async function() {
46
47
+
48
sandbox = sinon.createSandbox();
49
50
try {
@@ -89,7 +91,8 @@ describe('Queries', function() {
89
91
}
90
92
});
93
- afterEach(async () => {
94
+ afterEach(async function() {
95
96
97
sandbox.restore();
98
safeDel(qlpackFile);
0 commit comments