[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix typo (#8011)

authored by

Micha Huhn and committed by
GitHub
(May 23, 2025, 5:32 PM +0200) 1b29ff60 76091074

+1 -1
+1 -1
docs/api/index.md
··· 1115 1115 import { beforeEach } from 'vitest' 1116 1116 1117 1117 beforeEach(async () => { 1118 - // Clear mocks and add some testing data after before each test run 1118 + // Clear mocks and add some testing data before each test run 1119 1119 await stopMocking() 1120 1120 await addUser({ name: 'John' }) 1121 1121 })