movie-night-web/test/unit/example.test.ts

8 lines
147 B
TypeScript
Raw Normal View History

2026-02-16 19:12:00 -06:00
import { describe, expect, it } from 'vitest'
describe('example unit test', () => {
it('should pass', () => {
expect(1 + 1).toBe(2)
})
})