8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
|
|
describe('Demo', () => {
|
|
it('should work', () => {
|
|
expect(1 + 1).toBe(2)
|
|
})
|
|
})
|