1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Adapt integration test to recent changes

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-10-21 12:40:42 +03:00
parent 8f39e86b15
commit d743380012
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -24,8 +24,8 @@ describe("preferences page tests", () => {
await app.evaluate(async ({ app }) => {
await app.applicationMenu
.getMenuItemById(process.platform === "darwin" ? "root" : "file")
.submenu.getMenuItemById("preferences")
.getMenuItemById(process.platform === "darwin" ? "mac" : "file")
.submenu.getMenuItemById("navigate-to-preferences")
.click();
});
}, 10*60*1000);
@ -37,7 +37,7 @@ describe("preferences page tests", () => {
it('shows "preferences" and can navigate through the tabs', async () => {
const pages = [
{
id: "application",
id: "app",
header: "Application",
},
{
@ -51,8 +51,8 @@ describe("preferences page tests", () => {
];
for (const { id, header } of pages) {
await window.click(`[data-testid=tab-link-for-${id}]`);
await window.waitForSelector(`[data-testid=${id}-header] >> text=${header}`);
await window.click(`[data-preference-tab-link-test=${id}]`);
await window.waitForSelector(`[data-preference-page-title-test] >> text=${header}`);
}
}, 10*60*1000);