File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
extensions/ql-vscode/test/pure-tests Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ describe('using the query server', function () {
83
83
}
84
84
} ) ;
85
85
86
+ // Note this does not work with arrow functions as the test case bodies:
87
+ // ensure they are all written with standard anonymous functions.
88
+ this . timeout ( 10000 ) ;
89
+
86
90
const codeQlPath = process . env [ "CODEQL_PATH" ] ! ;
87
91
let qs : qsClient . QueryServerClient ;
88
92
let cliServer : cli . CodeQLCliServer ;
@@ -95,6 +99,7 @@ describe('using the query server', function () {
95
99
cliServer . dispose ( ) ;
96
100
}
97
101
} ) ;
102
+
98
103
it ( 'should be able to start the query server' , async function ( ) {
99
104
const consoleProgressReporter : ProgressReporter = {
100
105
report : ( v : { message : string } ) => console . log ( `progress reporter says ${ v . message } ` )
@@ -126,10 +131,6 @@ describe('using the query server', function () {
126
131
queryServerStarted . resolve ( ) ;
127
132
} ) ;
128
133
129
- // Note this does not work with arrow functions as the test case bodies:
130
- // ensure they are all written with standard anonymous functions.
131
- this . timeout ( 5000 ) ;
132
-
133
134
for ( const queryTestCase of queryTestCases ) {
134
135
const queryName = path . basename ( queryTestCase . queryPath ) ;
135
136
const compilationSucceeded = new Checkpoint < void > ( ) ;
You can’t perform that action at this time.
0 commit comments