todo.spec.ts 155 B

1234567891011
  1. import { test } from "@playwright/test"
  2. test(
  3. "test something cool",
  4. {
  5. annotation: { type: "todo" },
  6. },
  7. async () => {
  8. test.fixme()
  9. },
  10. )