mirror of
https://github.com/BradNut/AdelieStack
synced 2025-09-08 17:40:20 +00:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
|
|
import { describe, it, expect } from 'vitest';
|
||
|
|
|
||
|
|
describe('sum test', () => {
|
||
|
|
it('adds 1 + 2 to equal 3', () => {
|
||
|
|
expect(1 + 2).toBe(3);
|
||
|
|
});
|
||
|
|
});
|