We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d6475 commit 847d355Copy full SHA for 847d355
site/e2e/global.setup.ts
@@ -11,8 +11,10 @@ test("setup first user", async ({ page }) => {
11
await page.getByLabel(Language.passwordLabel).fill(constants.password);
12
await page.getByTestId("create").click();
13
14
- await expect(page).toHaveURL(/\/workspaces.*/);
+ await expect(page).toHaveURL(/\/templates.*/);
15
await page.context().storageState({ path: STORAGE_STATE });
16
17
- await page.getByTestId("button-select-template").isVisible();
+ await page
18
+ .getByRole("button", { name: "Create template", exact: false })
19
+ .isVisible();
20
});
0 commit comments