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 6d162c6 commit 3ff2706Copy full SHA for 3ff2706
site/e2e/helpers.ts
@@ -1123,7 +1123,7 @@ export async function createOrganization(page: Page): Promise<{
1123
const description = `Org description ${name}`;
1124
await page.getByLabel("Description").fill(description);
1125
await page.getByLabel("Icon", { exact: true }).fill("/emojis/1f957.png");
1126
- await page.getByRole("button", { name: "Create organization" }).click();
+ await page.getByRole("button", { name: /save/i }).click();
1127
1128
await expectUrl(page).toHavePathName(`/organizations/${name}`);
1129
await expect(page.getByText("Organization created.")).toBeVisible();
0 commit comments