diff options
Diffstat (limited to 'docs/test/writing.md')
-rw-r--r-- | docs/test/writing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/test/writing.md b/docs/test/writing.md index 6a29bf81f..e5e3fe1b0 100644 --- a/docs/test/writing.md +++ b/docs/test/writing.md @@ -70,7 +70,7 @@ Optionally specify a per-test timeout in milliseconds by passing a number as the ```ts import { test } from "bun:test"; -test.skip("wat", async () => { +test("wat", async () => { const data = await slowOperation(); expect(data).toBe(42); }, 500); // test must run in <500ms |