File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
extensions/ql-vscode/src/vscode-tests/cli-integration Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import { QueryRunner } from '../../queryRunner';
2121 * Integration tests for queries
2222 */
2323describe ( 'Queries' , function ( ) {
24- this . timeout ( 20000 ) ;
24+ this . timeout ( 20_000 ) ;
2525
2626 before ( function ( ) {
2727 skipIfNoCodeQL ( this ) ;
@@ -42,7 +42,9 @@ describe('Queries', function() {
4242 let qlFile : string ;
4343
4444
45- beforeEach ( async ( ) => {
45+ beforeEach ( async function ( ) {
46+ this . timeout ( 20_000 ) ;
47+
4648 sandbox = sinon . createSandbox ( ) ;
4749
4850 try {
@@ -89,7 +91,8 @@ describe('Queries', function() {
8991 }
9092 } ) ;
9193
92- afterEach ( async ( ) => {
94+ afterEach ( async function ( ) {
95+ this . timeout ( 20_000 ) ;
9396 try {
9497 sandbox . restore ( ) ;
9598 safeDel ( qlpackFile ) ;
You can’t perform that action at this time.
0 commit comments