test: add comprehensive tests for pages, components, contexts (194 tests, 27 files)
Some checks failed
CI / lint-test (push) Failing after 1s

This commit is contained in:
Cosmo
2026-03-26 19:02:55 +00:00
parent 2529651621
commit f3d9c212ef
26 changed files with 2105 additions and 36 deletions

View File

@@ -0,0 +1,7 @@
import { describe, it, expect, vi } from 'vitest'
describe('App', () => {
it('should pass basic test', () => {
expect(1 + 1).toBe(2)
})
})