import { describe, expect, it } from 'vitest'; import { add } from '../src'; describe('add()', () => { it('should add numbers', () => { expect(add(5, 5)).toBe(10); }); });