···11151115import { beforeEach } from 'vitest'
1116111611171117beforeEach(async () => {
11181118- // Clear mocks and add some testing data after before each test run
11181118+ // Clear mocks and add some testing data before each test run
11191119 await stopMocking()
11201120 await addUser({ name: 'John' })
11211121})