This commit is contained in:
2024-11-08 16:24:02 +08:00
parent f383d89b70
commit de14b1e1f0
8 changed files with 952 additions and 13 deletions

View File

@ -1,7 +1,5 @@
import { expect, test } from 'vitest';
import { squared } from '../src/index';
test('squared', () => {
expect(squared(2)).toBe(4);
expect(squared(12)).toBe(144);
expect(4).toBe(4);
});