UNPKG

@testing-library/svelte

Version:

Simple and complete Svelte testing utilities that encourage good testing practices.

12 lines (9 loc) 189 B
import { act, cleanup, setup } from '@testing-library/svelte' import { beforeEach } from 'vitest' beforeEach(() => { setup() return async () => { await act() cleanup() } })