Files
Mana-Loop/src/lib/game/store.test.ts
T
Refactoring Agent d2d28887b1
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 1m9s
Refactor large files into modular components
- Refactored page.tsx (613→252 lines) with GameOverScreen and LeftPanel extracted
- Refactored StatsTab.tsx (584→92 lines) with section components
- Refactored SkillsTab.tsx (434→54 lines) with sub-components
- Created modular structure for GameContext, LootInventory, and other components
- All extracted components organized into feature directories
2026-05-02 17:35:03 +02:00

25 lines
1.0 KiB
TypeScript
Executable File

/**
* Unit Tests for Mana Loop Game Logic
*
* This file contains comprehensive tests for the game's core mechanics.
* Updated for the new skill system with tiers and upgrade trees.
*
* This file has been refactored - individual test suites have been moved to
* the store-tests/ directory. This file re-exports all tests for convenience.
*/
// Re-export all test modules
export * from './store-tests/formatting.test';
export * from './store-tests/floor.test';
export * from './store-tests/mana-calculation.test';
export * from './store-tests/damage-calculation.test';
export * from './store-tests/insight-meditation-incursion.test';
export * from './store-tests/spell-cost.test';
export * from './store-tests/study-speed.test';
export * from './store-tests/game-constants.test';
export * from './store-tests/element-recipes.test';
export * from './store-tests/integration.test';
export * from './store-tests/skill-evolution.test';
export * from './store-tests/individual-skills.test';
export * from './store-tests/skill-requirements.test';