playwright/e2e/fixture/fixture.test.ts

6 lines
122 B
TypeScript
Raw Normal View History

2024-08-02 21:39:54 +02:00
import { test } from "./myFixture"
test("Fixture demo", async ({ age, page, email }) => {
console.log(age, email)
})