1 2 3 4 5 6 7 8import { describe, expect, it } from 'vitest' describe('should', () => { it('work', () => { expect(1 + 1).toBe(2) }) })
1 2 3 4 5 6 7 8
import { describe, expect, it } from 'vitest' describe('should', () => { it('work', () => { expect(1 + 1).toBe(2) }) })