2024-08-23 00:38:45 +08:00
|
|
|
import { test, expect } from "@self/tootils";
|
2024-01-17 21:39:10 +08:00
|
|
|
|
|
|
|
test("shows the results tab when results > 0", async ({ page }) => {
|
2024-01-23 15:31:59 +08:00
|
|
|
await page.getByRole("button", { name: "Start Practice" }).click();
|
|
|
|
await expect(
|
|
|
|
page.getByText("Please enter word prompts into the table.")
|
|
|
|
).toBeAttached();
|
|
|
|
await page.getByLabel("Close").click();
|
2025-02-27 04:15:20 +08:00
|
|
|
await page.getByRole("button", { name: "+" }).click();
|
|
|
|
await page.getByText("Start Practice").click();
|
|
|
|
await expect(
|
|
|
|
page.getByText("Please enter word prompts into the table.")
|
|
|
|
).not.toBeAttached();
|
2024-01-17 21:39:10 +08:00
|
|
|
});
|