11 lines
No EOL
240 B
TypeScript
11 lines
No EOL
240 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
|
|
describe('Basic Test Setup', () => {
|
|
it('should run basic tests', () => {
|
|
expect(1 + 1).toBe(2)
|
|
})
|
|
|
|
it('should have access to vi globals', () => {
|
|
expect(vi).toBeDefined()
|
|
})
|
|
}) |