Skip to content

Commit 73e5ab6

Browse files
Re-enable latex tests for vscode versions >= 1.107.0 (#3118)
Vscode issue https://github.Com/microsoft/vscode/issues/243747 is closed and released in vscode version `1.107.0`. Latex is now supported on parse tree extension `0.48.0` cursorless-dev/vscode-parse-tree#124 Fixes #2879
1 parent ed64247 commit 73e5ab6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cursorless-vscode-e2e/src/suite/shouldSkipTest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import * as vscode from "vscode";
55
* FIXME: On newer vscode versions some Tree sitter parser throws memory errors
66
* https://github.com/cursorless-dev/cursorless/issues/2879
77
*/
8-
const isVersionProblematic = semver.gte(vscode.version, "1.98.0");
8+
const isVersionProblematic =
9+
semver.lt(vscode.version, "1.107.0") && semver.gte(vscode.version, "1.98.0");
910

1011
export function shouldSkipRecordedTest(name: string): boolean {
1112
return isVersionProblematic && name.startsWith("recorded/languages/latex/");

0 commit comments

Comments
 (0)