generateur_v3/fold/src/index.test.ts

8 lines
148 B
TypeScript
Raw Normal View History

2022-12-27 18:26:05 +01:00
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});