- Unit : domain (GaugeCalculator, Enclos, Dragodinde, XpTable, Race, Tier...) - Unit : application (commands, queries, CommandBus) - Fonctionnel : breeding-workflow, enclos-management, timer-workflow - Régression : gauge-tier, gauge-recharge, xp-timer, level-target, breeding - E2E Playwright + Electron : navigation, timer, recharge jauge, accouplement, persistance des données Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('smoke test', () => {
|
|
it('should run', () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
});
|