Files
Pac-Man/web/src/demo.spec.ts
Xevion b809f1c095 fix: address ESLint warnings and add Vitest configuration
- Add ESLint flat config with Svelte and TypeScript support
- Fix unused variables and component prop naming
- Add Vitest browser testing setup with Playwright
- Configure separate test projects for client and server code
2025-12-30 12:28:14 -06:00

8 lines
148 B
TypeScript

import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});