diff options
-rw-r--r-- | docs/test/lifecycle.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/test/lifecycle.md b/docs/test/lifecycle.md index ccb7ce85d..176c476de 100644 --- a/docs/test/lifecycle.md +++ b/docs/test/lifecycle.md @@ -10,7 +10,7 @@ The test runner supports the following lifecycle hooks. This is useful for loadi Perform per-test setup and teardown logic with `beforeEach` and `afterEach`. ```ts -import { expect, test } from "bun:test"; +import { beforeEach, afterEach } from "bun:test"; beforeEach(() => { console.log("running test."); |