chore: set up vitest and add zod

This commit is contained in:
Carlos Narro
2026-05-30 12:15:26 +02:00
parent 75de172900
commit 515e9fd7a2
4 changed files with 1454 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
import { describe, it, expect } from 'vitest';
describe('vitest setup', () => {
it('runs', () => {
expect(1 + 1).toBe(2);
});
});