Server/project/tests/Setup.test.ts
TheSparta 1f0318e66d Create container once before all tests
- Doesn't recreate the container for each test file, only loads the database once at the start, makes it much faster.
- Every test file should be imported in `Setup.test.ts` in order for it to work.
2023-11-05 16:59:54 +00:00

17 lines
468 B
TypeScript

//Controllers
import "@tests/controllers/InsuranceController.test";
//Generators
import "@tests/generators/BotLevelGenerator.test";
//Helpers
import "@tests/helpers/BotHelper.test";
import "@tests/helpers/HandbookHelper.test";
import "@tests/helpers/InRaidHelper.test";
import "@tests/helpers/ItemHelper.test";
//Services
import "@tests/services/ItemBaseClassService.test";
import "@tests/services/PaymentService.test";
import "@tests/services/PlayerService.test";