-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from Limerio/cd
CD
- Loading branch information
Showing
5 changed files
with
58 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { expect, test } from "@playwright/test" | ||
|
||
test.beforeEach(async ({ page }) => { | ||
await page.goto("/", { waitUntil: "networkidle" }) | ||
}) | ||
|
||
test("Theme", async ({ page }) => { | ||
await page.getByRole("button", { name: "Toggle theme" }).click() | ||
await page.getByRole("menuitem", { name: "Light" }).click() | ||
await expect(page.locator("html")).toHaveClass("light") | ||
|
||
await page.getByRole("button", { name: "Toggle theme" }).click() | ||
await page.getByRole("menuitem", { name: "Dark" }).click() | ||
await expect(page.locator("html")).toHaveClass("dark") | ||
|
||
await page.getByRole("button", { name: "Toggle theme" }).click() | ||
await page.getByRole("menuitem", { name: "System" }).click() | ||
}) | ||
|
||
test("Create place with dialog", async ({ page }) => { | ||
await page.getByRole("button", { name: "Add" }).click() | ||
await page.getByLabel("Building").click() | ||
await page.getByLabel("Bar").click() | ||
await page.getByPlaceholder("Name of the building....").click() | ||
await page.getByPlaceholder("Name of the building....").fill("Random Name") | ||
await page.getByPlaceholder("Name of the building....").press("Tab") | ||
await page | ||
.getByPlaceholder("Which city are the building ?") | ||
.fill("Random City") | ||
await page.getByPlaceholder("Which city are the building ?").press("Tab") | ||
await page.getByPlaceholder("What is the zipcode ?").fill("12345") | ||
await page.getByPlaceholder("What is the zipcode ?").press("Tab") | ||
await page.getByPlaceholder("Which country are the").fill("Random Country") | ||
await page.getByRole("button", { name: "Next" }).click() | ||
await page.getByLabel("Bar").click() | ||
await page.getByLabel("Cocktail").getByText("Cocktail").click() | ||
|
||
await page.getByRole("button", { name: "Next" }).click() | ||
await page.getByLabel("Create a place").getByText("Bar").click() | ||
await page.getByRole("button", { name: "Finish" }).click() | ||
}) | ||
|
||
test("Pagination", async ({ page }) => { | ||
await expect(page.getByRole("button", { name: "Previous" })).toBeDisabled() | ||
await page.getByRole("button", { name: "Next" }).click() | ||
|
||
await expect(page.getByRole("button", { name: "Previous" })).toBeEnabled() | ||
await page.getByRole("button", { name: "Previous" }).click() | ||
await expect(page.getByRole("button", { name: "Previous" })).toBeDisabled() | ||
}) |