Add frontend App test file

This commit is contained in:
2026-01-26 21:51:31 +11:00
parent 903cee27b9
commit 784e89e068

View File

@@ -0,0 +1,7 @@
import { describe, it, expect } from 'vitest'
describe('App', () => {
it('renders without crashing', () => {
expect(true).toBe(true)
})
})