Chore/initial setup #1

Merged
ilia merged 8 commits from chore/initial-setup into main 2026-07-14 16:59:25 +00:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit bb02a20df6 - Show all commits
+2
View File
@@ -5,5 +5,7 @@ pre-commit:
glob: "*.{js,json,css}"
run: yarn biome check --write {staged_files}
stage_fixed: true
tests:
run: yarn test
+7
View File
@@ -0,0 +1,7 @@
import { describe, expect, test } from 'vitest';
describe('Mock test', () => {
test('Mock test', () => {
expect('Mock').equal('Mock');
});
});