vertex-frontend/test/basic.test.ts
2025-02-03 16:27:13 +08:00

8 lines
139 B
TypeScript

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