2024-04-26 15:43:27 +02:00

8 lines
149 B
TypeScript

import { expect, test } from 'vitest'
import { add } from './math'
test('should add two numbers correctly', () => {
expect(add(1, 2)).toBe(3)
})