@@ -13,7 +13,6 @@ suite('Extensions Test Suite', function () {
1313 } ) ;
1414 test ( 'Project File Response' , async ( ) => {
1515 if ( vscode . workspace . workspaceFolders !== undefined ) {
16- await adaExtState . adaClient . onReady ( ) ;
1716 const result : string = await getProjectFile ( adaExtState . adaClient ) ;
1817 const name = result . replace ( / ^ .* [ \\ / ] / , '' ) ;
1918 assert . strictEqual ( name , 'default.gpr' ) ;
@@ -23,7 +22,6 @@ suite('Extensions Test Suite', function () {
2322 } ) ;
2423 test ( 'Object Directory Response' , async ( ) => {
2524 if ( vscode . workspace . workspaceFolders !== undefined ) {
26- await adaExtState . adaClient . onReady ( ) ;
2725 const result : string = await getObjectDir ( adaExtState . adaClient ) ;
2826 const name = result ?. replace ( / ^ .* [ \\ / ] / , '' ) ;
2927 assert . strictEqual ( name , 'obj' ) ;
@@ -33,7 +31,6 @@ suite('Extensions Test Suite', function () {
3331 } ) ;
3432 test ( 'Test Add Subprogram Box' , async ( ) => {
3533 if ( vscode . workspace . workspaceFolders !== undefined ) {
36- await adaExtState . adaClient . onReady ( ) ;
3734 const cursorPositions : vscode . Position [ ] = [
3835 new vscode . Position ( 9 , 1 ) ,
3936 new vscode . Position ( 4 , 1 ) ,
0 commit comments