Skip to content

Commit dde5802

Browse files
authored
Another attempt to fix windows ci (#1358)
## Checklist - [ ] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [ ] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [ ] I have not broken the cheatsheet
1 parent 235b1b9 commit dde5802

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/test-harness/src/util/launchVscodeAndRunTests.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
4444
cli,
4545
[
4646
...args,
47-
"--disable-gpu",
48-
"--disable-software-rasterizer",
4947
...extensionDependencies.flatMap((dependency) => [
5048
"--install-extension",
5149
dependency,
@@ -65,7 +63,12 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
6563
// Note: Crash dump causes legacy VSCode to hang, so we just don't bother
6664
launchArgs: useLegacyVscode
6765
? undefined
68-
: [`--crash-reporter-directory=${crashDir}`, `--logsPath=${logsDir}`],
66+
: [
67+
`--crash-reporter-directory=${crashDir}`,
68+
`--logsPath=${logsDir}`,
69+
"--disable-gpu",
70+
"--disable-software-rasterizer",
71+
],
6972
});
7073
} catch (err) {
7174
console.error("Test run threw exception:");

0 commit comments

Comments
 (0)