Skip to content

Commit 69ea22e

Browse files
authored
1 parent 15d7254 commit 69ea22e

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

packages/cursorless-vscode-e2e/src/suite/crossCellsSetSelection.vscode.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ import {
66
import * as assert from "assert";
77
import { window } from "vscode";
88
import { endToEndTestSetup, sleepWithBackoff } from "../endToEndTestSetup";
9+
import { skipIfWindowsCi } from "./skipIfWindowsCi";
910

1011
// Check that setSelection is able to focus the correct cell
1112
suite("Cross-cell set selection", async function () {
13+
// Skipped for now; see #1260
14+
skipIfWindowsCi();
1215
endToEndTestSetup(this);
1316

1417
test("Cross-cell set selection", runTest);

packages/cursorless-vscode-e2e/src/suite/editNewCell.vscode.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ import * as assert from "assert";
88
import { window } from "vscode";
99
import { endToEndTestSetup, sleepWithBackoff } from "../endToEndTestSetup";
1010
import { getPlainNotebookContents } from "../notebook";
11+
import { skipIfWindowsCi } from "./skipIfWindowsCi";
1112

1213
// Check that setSelection is able to focus the correct cell
1314
suite("Edit new cell", async function () {
15+
// Skipped for now; see #1260
16+
skipIfWindowsCi();
1417
endToEndTestSetup(this);
1518

1619
test("drink cell", () =>

packages/cursorless-vscode-e2e/src/suite/intraCellSetSelection.vscode.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ import * as assert from "assert";
66
import { window } from "vscode";
77
import { endToEndTestSetup, sleepWithBackoff } from "../endToEndTestSetup";
88
import { runCursorlessCommand } from "@cursorless/vscode-common";
9+
import { skipIfWindowsCi } from "./skipIfWindowsCi";
910

1011
// Check that setSelection is able to focus the correct cell
1112
suite("Within cell set selection", async function () {
13+
// Skipped for now; see #1260
14+
skipIfWindowsCi();
1215
endToEndTestSetup(this);
1316

1417
test("Within cell set selection", runTest);
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export function skipIfWindowsCi() {
2+
suiteSetup(function () {
3+
if (process.env.RUNNER_OS === "Windows" && process.env.CI === "true") {
4+
this.skip();
5+
}
6+
});
7+
}

0 commit comments

Comments
 (0)