diff --git a/basic/0-failing.spec.ts b/basic/0-failing.spec.ts index 118d38c..c188065 100644 --- a/basic/0-failing.spec.ts +++ b/basic/0-failing.spec.ts @@ -1,9 +1,10 @@ import { expect } from "@playwright/test"; import { test } from "./base.ts"; - +console.log("asd"); 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");