mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix type error in integration tests file
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
55db60abba
commit
b51490ecfd
@ -24,9 +24,10 @@ describe("preferences page tests", () => {
|
|||||||
|
|
||||||
await app.evaluate(async ({ app }) => {
|
await app.evaluate(async ({ app }) => {
|
||||||
await app.applicationMenu
|
await app.applicationMenu
|
||||||
.getMenuItemById(process.platform === "darwin" ? "mac" : "file")
|
?.getMenuItemById(process.platform === "darwin" ? "mac" : "file")
|
||||||
.submenu.getMenuItemById("navigate-to-preferences")
|
?.submenu
|
||||||
.click();
|
?.getMenuItemById("navigate-to-preferences")
|
||||||
|
?.click();
|
||||||
});
|
});
|
||||||
}, 10*60*1000);
|
}, 10*60*1000);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user