aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/test/extending.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/test/extending.md b/docs/test/extending.md
index a357d70e5..16ce71155 100644
--- a/docs/test/extending.md
+++ b/docs/test/extending.md
@@ -1,6 +1,6 @@
Like the runtime, `bun:test` also supports `--preload` scripts. These scripts are loaded before any tests are run. This is useful for setting up test fixtures, mocking, and configuring the test environment.
-{% codetab }
+{% codetabs }
```ts#preloaded.ts
import { beforeAll, beforeEach, afterEach, afterAll } from "bun:test";
@@ -22,7 +22,7 @@ afterAll(() => {
});
```
-{% /codetab %}
+{% /codetabs %}
Test file: