[docs] Minor syntax correction in test.md (#2153)

This commit is contained in:
Jake Boone
2023-02-24 10:56:18 -07:00
committed by GitHub
parent e887a064fb
commit f366231bff

View File

@@ -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";