vitesse/test/basic.test.ts

8 lines
139 B
TypeScript
Raw Normal View History

import { describe, expect, it } from 'vitest'
2021-12-26 13:16:12 +08:00
describe('tests', () => {
it('should works', () => {
expect(1 + 1).toEqual(2)
})
})