mirror of
https://github.com/Jackzmc/storage.git
synced 2025-05-11 19:43:19 +00:00
7 lines
148 B
TypeScript
7 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);
|
|
});
|
|
});
|