An in-browser wisp.place site explorer
1import { expect, afterEach } from 'vitest';
2import { cleanup } from '@testing-library/react';
3import * as matchers from '@testing-library/jest-dom/matchers';
4
5// Extend Vitest's expect with jest-dom matchers
6expect.extend(matchers);
7
8// Cleanup after each test
9afterEach(() => {
10 cleanup();
11});