@@ -144,7 +144,7 @@ suite('Extension Test Suite', () => {
144
144
145
145
test ( 'Extension should create the extension log file' , async ( ) => {
146
146
await vscode . workspace . openTextDocument ( getWorkspaceFile ( 'Main.hs' ) ) ;
147
- assert . ok ( await withTimeout ( 30 , filesCreated . get ( 'log' ) ! ) , 'Extension log not created in 30 seconds' ) ;
147
+ assert . ok ( await withTimeout ( 90 , filesCreated . get ( 'log' ) ! ) , 'Extension log not created in 30 seconds' ) ;
148
148
} ) ;
149
149
150
150
@@ -165,7 +165,7 @@ suite('Extension Test Suite', () => {
165
165
166
166
test ( 'Extension log should have server output' , async ( ) => {
167
167
await vscode . workspace . openTextDocument ( getWorkspaceFile ( 'Main.hs' ) ) ;
168
- await delay ( 20 ) ;
168
+ await delay ( 90 ) ;
169
169
const logContents = getExtensionLogContent ( ) ;
170
170
assert . ok ( logContents , 'Extension log file does not exist' ) ;
171
171
assert . match ( logContents , / I N F O h l s : \s + R e g i s t e r i n g i d e c o n f i g u r a t i o n / , 'Extension log file has no hls output' ) ;
@@ -174,7 +174,7 @@ suite('Extension Test Suite', () => {
174
174
test ( 'Server should inherit environment variables defined in the settings' , async ( ) => {
175
175
await vscode . workspace . openTextDocument ( getWorkspaceFile ( 'Main.hs' ) ) ;
176
176
assert . ok (
177
- await withTimeout ( 30 , filesCreated . get ( 'cache' ) ! ) ,
177
+ await withTimeout ( 90 , filesCreated . get ( 'cache' ) ! ) ,
178
178
'Server did not inherit XDG_CACHE_DIR from environment variables set in the settings'
179
179
) ;
180
180
} ) ;
0 commit comments