From 1969204fa5cd5ed15263e91218bf04c9b789dcd9 Mon Sep 17 00:00:00 2001 From: Luke Ingalls <45518011+lukeingalls@users.noreply.github.com> Date: Wed, 31 Jan 2024 00:08:26 -0800 Subject: [PATCH] docs: remove outdated callout (#8584) seems like this is already patched https://github.com/oven-sh/bun/issues/5394 --- docs/cli/test.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/cli/test.md b/docs/cli/test.md index 3dc58d0b5c..205d367f11 100644 --- a/docs/cli/test.md +++ b/docs/cli/test.md @@ -113,10 +113,6 @@ See [Test > Lifecycle](/docs/test/lifecycle) for complete documentation. ## Mocks -{% callout %} -Module mocking (`jest.mock()`) is not yet supported. Track support for it [here](https://github.com/oven-sh/bun/issues/5394). -{% /callout %} - Create mock functions with the `mock` function. Mocks are automatically reset between tests. ```ts