add hypothetical folder for Topos V2

This commit is contained in:
2024-04-19 20:13:37 +02:00
parent cee061a100
commit 13cf95b71e
30 changed files with 8380 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});