docs: remove outdated callout (#8584)

seems like this is already patched https://github.com/oven-sh/bun/issues/5394
This commit is contained in:
Luke Ingalls
2024-01-31 00:08:26 -08:00
committed by GitHub
parent 2d9db9b28f
commit 1969204fa5

View File

@@ -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