Skip to content

Commit 69c4268

Browse files
authored
Fix broken tests (#880)
* Fix test * Retun CI
1 parent 5a83b7e commit 69c4268

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [macos-11, ubuntu-latest, windows-latest]
15-
ghc: [9.0.2, 8.10.4, 9.2.7, 9.4.5, 9.6.1]
15+
ghc: [8.10.4, 9.2.7, 9.6.1]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Checkout

test/suite/extension.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// 2. Test if the extension can be activated
44
// 3. Test if the extension can create the extension log file
55
// 4. Test if the extension log contains server output (currently we use this to ensure the server is activated successfully)
6-
// 5. Test if the server inherit environment variables defined in the settings (why?)
6+
// 5. Test if the server inherit environment variables defined in the settings
77

88
import * as vscode from 'vscode';
99
import * as assert from 'assert';
@@ -170,8 +170,8 @@ suite('Extension Test Suite', () => {
170170
? resolve(true) : reject(false);
171171
}
172172
),
173-
1000 * 1,
174-
150
173+
1000 * 5,
174+
30
175175
),
176176
'Extension log file has no hls output'
177177
);

0 commit comments

Comments
 (0)