movie-night-web/test/unit/example.test.ts
2026-02-16 19:12:00 -06:00

7 lines
147 B
TypeScript

import { describe, expect, it } from 'vitest'
describe('example unit test', () => {
it('should pass', () => {
expect(1 + 1).toBe(2)
})
})