diff options
author | 2023-05-21 00:53:00 -0700 | |
---|---|---|
committer | 2023-05-21 00:53:00 -0700 | |
commit | 1888c2df224dc446ba7e70cc5b2e38c4c0168d55 (patch) | |
tree | b454ad294ba4813d752e831152bef32bb2fa60b6 | |
parent | 08043c527406e362b9580975eed306f1c7dd02e2 (diff) | |
download | bun-1888c2df224dc446ba7e70cc5b2e38c4c0168d55.tar.gz bun-1888c2df224dc446ba7e70cc5b2e38c4c0168d55.tar.zst bun-1888c2df224dc446ba7e70cc5b2e38c4c0168d55.zip |
Update extending.md
-rw-r--r-- | docs/test/extending.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/test/extending.md b/docs/test/extending.md index e42492eef..a357d70e5 100644 --- a/docs/test/extending.md +++ b/docs/test/extending.md @@ -68,7 +68,7 @@ To save yourself from having to type `--preload` every time you run tests, you c ```toml [test] -preload = ["preloaded.ts"] +preload = ["./preloaded.ts"] ``` ## Loaders & Resolvers @@ -131,3 +131,5 @@ Or you can pass --preload to the command line: ```sh $ bun test --preload=loader.ts ``` + +TODO: `expect.extend` |