17 lines
449 B
TypeScript
17 lines
449 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
import { CountersPage } from "./fixtures/counters_page";
|
|
|
|
test.describe("Decrement Count", () => {
|
|
test("should decrease the total count", async ({ page }) => {
|
|
const ui = new CountersPage(page);
|
|
await ui.goto();
|
|
await ui.addCounter();
|
|
|
|
await ui.decrementCount();
|
|
await ui.decrementCount();
|
|
await ui.decrementCount();
|
|
|
|
await expect(ui.total).toHaveText("-3");
|
|
});
|
|
});
|