crm-yx/test/basic.test.ts
2024-09-12 16:20:13 +08:00

8 lines
136 B
TypeScript

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