mirror of
https://fastgit.cc/https://github.com/anomalyco/opencode
synced 2026-04-20 21:00:29 +08:00
12 lines
155 B
TypeScript
12 lines
155 B
TypeScript
import { test } from "@playwright/test"
|
|
|
|
test(
|
|
"test something cool",
|
|
{
|
|
annotation: { type: "todo" },
|
|
},
|
|
async () => {
|
|
test.fixme()
|
|
},
|
|
)
|