6 lines
89 B
TypeScript
6 lines
89 B
TypeScript
import { expect, test } from 'vitest';
|
|
|
|
test('squared', () => {
|
|
expect(4).toBe(4);
|
|
});
|