diff --git a/integration/__tests__/command-palette.tests.ts b/integration/__tests__/command-palette.tests.ts index ae0495673f..b22cfc26d0 100644 --- a/integration/__tests__/command-palette.tests.ts +++ b/integration/__tests__/command-palette.tests.ts @@ -1,6 +1,5 @@ import { Application } from "spectron"; import * as utils from "../helpers/utils"; -import { isMac } from "../../src/common/vars"; jest.setTimeout(60000); @@ -24,13 +23,5 @@ describe("Lens command palette", () => { await app.client.waitUntilTextExists(".Select__option", "Preferences: Open"); await app.client.keys("Escape"); }); - - utils.describeIf(!isMac)("Linux & Windows", () => { - it("opens command dialog via keyboard", async () => { - await app.client.keys(["Control", "Shift", "p"]); - await app.client.waitUntilTextExists(".Select__option", "Preferences: Open"); - await app.client.keys("Escape"); - }); - }); }); });