under-falling-skies/src/index.test.js

8 lines
148 B
JavaScript
Raw Normal View History

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