aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jake Boone <jakeboone02@gmail.com> 2023-02-24 10:56:18 -0700
committerGravatar GitHub <noreply@github.com> 2023-02-24 09:56:18 -0800
commitf366231bff574f893808ba964009581ec4599ebd (patch)
treee1419bc33ad0db2cfef1c1ad81079fe84fb895d4
parente887a064fb63347b4a4b21c282c1db01dfee98b1 (diff)
downloadbun-f366231bff574f893808ba964009581ec4599ebd.tar.gz
bun-f366231bff574f893808ba964009581ec4599ebd.tar.zst
bun-f366231bff574f893808ba964009581ec4599ebd.zip
[docs] Minor syntax correction in test.md (#2153)
-rw-r--r--docs/cli/test.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cli/test.md b/docs/cli/test.md
index 4471a7204..5513285f9 100644
--- a/docs/cli/test.md
+++ b/docs/cli/test.md
@@ -112,7 +112,7 @@ afterEach(() => {
// tests...
```
-Perform per-scope setup and teardown logic with `beforeAll` and `afterAll`. At the top-level, the `*scope* is the current file; in a `describe` block, the scope is the block itself.
+Perform per-scope setup and teardown logic with `beforeAll` and `afterAll`. At the top-level, the *scope* is the current file; in a `describe` block, the scope is the block itself.
```ts
import { expect, test, beforeAll, afterAll } from "bun:test";