mirror of
https://git.freecumextremist.com/grumbulon/pomme.git
synced 2024-11-27 01:13:55 +00:00
7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('sum test', () => {
|
|
it('adds 1 + 2 to equal 3', () => {
|
|
expect(1 + 2).toBe(3);
|
|
});
|
|
});
|