Prepares for Plan 03 unit tests (MustacheEditor, NotificationBell, wizard step validation). jsdom environment + jest-dom matchers + canary test verifies the wiring.
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('vitest canary', () => {
|
|
it('arithmetic still works', () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
});
|