Skip to content

Commit

Permalink
fix lifecycle docu (#5159)
Browse files Browse the repository at this point in the history
  • Loading branch information
ximex authored Sep 13, 2023
1 parent 996491f commit 8777c3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/test/lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ To scope the hooks to a test file:
```ts
import { describe, beforeAll } from "bun:test";

describe("test group", () => {
beforeAll(() => {
// setup
});
beforeAll(() => {
// setup
});

describe("test group", () => {
// tests...
});
```
Expand Down

0 comments on commit 8777c3f

Please sign in to comment.