Create todo.spec.ts

This commit is contained in:
LukeParkerDev 2026-04-24 07:44:06 +10:00
parent 6d66973fd5
commit 0d500a735f

View file

@ -0,0 +1,11 @@
import { test } from "@playwright/test"
test(
"test something cool",
{
annotation: { type: "todo" },
},
async () => {
test.fixme()
},
)