awesome-compose/vue-golang-mysql/web/test/basic.test.ts

8 lines
136 B
TypeScript
Raw Normal View History

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