Files
Seasoned/Seasoned.Frontend/test/App.spec.ts
2026-03-04 22:26:44 +00:00

8 lines
194 B
TypeScript

import { describe, it, expect } from 'vitest'
import { mount } from '@vue/test-utils'
describe('Frontend Setup', () => {
it('checks that 1 + 1 is 2', () => {
expect(1 + 1).toBe(2)
})
})