diff options
author | 2023-07-17 11:42:06 -0700 | |
---|---|---|
committer | 2023-07-17 11:42:13 -0700 | |
commit | 8a176913d8caf097c90008bad4ebc3dbac8df477 (patch) | |
tree | 1202c564b83ec789525e04100937e85545f6417f /docs/test | |
parent | 570a44d73a14b73614d6bdd8787f08545dd63c37 (diff) | |
download | bun-8a176913d8caf097c90008bad4ebc3dbac8df477.tar.gz bun-8a176913d8caf097c90008bad4ebc3dbac8df477.tar.zst bun-8a176913d8caf097c90008bad4ebc3dbac8df477.zip |
Tweak test docs
Diffstat (limited to 'docs/test')
-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 |