mirror of
https://github.com/Xevion/Pac-Man.git
synced 2026-01-31 00:24:59 -06:00
- 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
8 lines
148 B
TypeScript
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);
|
|
});
|
|
});
|