basic.test.ts 136 B

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