onePageDaddy/src/index.test.js

8 lines
148 B
JavaScript
Raw Permalink Normal View History

2023-09-01 14:39:32 +02:00
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});