mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
skip preferences integration test on windows due to playwright issue
Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
This commit is contained in:
parent
f89ffb66bc
commit
4c1ee544bc
@ -11,6 +11,7 @@
|
||||
*/
|
||||
import type { ElectronApplication, Page } from "playwright";
|
||||
import * as utils from "../helpers/utils";
|
||||
import { isWindows } from "../../src/common/vars";
|
||||
|
||||
describe("preferences page tests", () => {
|
||||
let window: Page, cleanup: () => Promise<void>;
|
||||
@ -33,7 +34,8 @@ describe("preferences page tests", () => {
|
||||
await cleanup();
|
||||
}, 10*60*1000);
|
||||
|
||||
it('shows "preferences" and can navigate through the tabs', async () => {
|
||||
// skip on windows due to suspected playwright issue with Electron 14
|
||||
utils.itIf(!isWindows)('shows "preferences" and can navigate through the tabs', async () => {
|
||||
const pages = [
|
||||
{
|
||||
id: "application",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user