mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-02-22 17:22:14 +00:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('sum test', () => {
|
|
it('adds 1 + 2 to equal 3', () => {
|
|
expect(1 + 2).toBe(3);
|
|
});
|
|
});
|
|
|