svgl/src/index.test.ts

8 lines
152 B
TypeScript
Raw Normal View History

2023-03-14 21:08:22 +00:00
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
2023-03-15 11:29:15 +00:00
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
2023-03-14 21:08:22 +00:00
});