Skip to content

Fix broken tests #880

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-11, ubuntu-latest, windows-latest]
ghc: [9.0.2, 8.10.4, 9.2.7, 9.4.5, 9.6.1]
ghc: [8.10.4, 9.2.7, 9.6.1]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// 2. Test if the extension can be activated
// 3. Test if the extension can create the extension log file
// 4. Test if the extension log contains server output (currently we use this to ensure the server is activated successfully)
// 5. Test if the server inherit environment variables defined in the settings (why?)
// 5. Test if the server inherit environment variables defined in the settings

import * as vscode from 'vscode';
import * as assert from 'assert';
Expand Down Expand Up @@ -170,8 +170,8 @@ suite('Extension Test Suite', () => {
? resolve(true) : reject(false);
}
),
1000 * 1,
150
1000 * 5,
30
),
'Extension log file has no hls output'
);
Expand Down