zephyr-frontend/test/basic.test.ts
2022-01-31 11:25:24 +08:00

8 lines
136 B
TypeScript

import { describe, expect, it } from 'vitest'
describe('Hi', () => {
it('should works', () => {
expect(1 + 1).toEqual(2)
})
})