Fishie-Honesty-UI/src/index.test.js

9 lines
149 B
JavaScript
Raw Normal View History

2023-04-04 21:35:10 +05:00
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});
2023-04-06 14:21:56 +05:00