zephyr-frontend/test/basic.test.ts
2021-12-09 20:51:51 +08:00

8 lines
136 B
TypeScript

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