8 lines
136 B
TypeScript
8 lines
136 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
|
|
describe('Hi', () => {
|
|
it('should works', () => {
|
|
expect(1 + 1).toEqual(2)
|
|
})
|
|
})
|