Skip to content

Commit eed03fe

Browse files
committed
fix: fix format
1 parent 50074d1 commit eed03fe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/e2e/tests/organizations.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,7 @@ test("create and delete organization", async ({ page }) => {
5252
const dialog = page.getByTestId("dialog");
5353
await dialog.getByLabel("Name").fill(newName);
5454
await dialog.getByRole("button", { name: "Delete" }).click();
55-
await expect(page.getByText(`Organization ${newName} deleted.`)).toBeVisible();
55+
await expect(
56+
page.getByText(`Organization ${newName} deleted.`),
57+
).toBeVisible();
5658
});

0 commit comments

Comments
 (0)