diff --git a/basic/0-failing.spec.ts b/basic/0-failing.spec.ts index 118d38c..09c23bc 100644 --- a/basic/0-failing.spec.ts +++ b/basic/0-failing.spec.ts @@ -1,9 +1,13 @@ import { expect } from "@playwright/test"; import { test } from "./base.ts"; + + + test("basic test @basic", async ({ page }) => { await page.goto("https://demo.playwright.dev/todomvc"); +console.log("test"); // Use locators to represent a selector and re-use them const inputBox = page.locator("input.new-todo"); const todoList = page.locator(".todo-list");