Skip to content

Commit 8777c3f

Browse files
authored
fix lifecycle docu (#5159)
1 parent 996491f commit 8777c3f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/test/lifecycle.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ To scope the hooks to a test file:
4444
```ts
4545
import { describe, beforeAll } from "bun:test";
4646

47-
describe("test group", () => {
48-
beforeAll(() => {
49-
// setup
50-
});
47+
beforeAll(() => {
48+
// setup
49+
});
5150

51+
describe("test group", () => {
5252
// tests...
5353
});
5454
```

0 commit comments

Comments
 (0)