8 lines
194 B
TypeScript
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)
|
|
})
|
|
}) |