diff --git a/project/tests/Setup.test.ts b/project/tests/Setup.test.ts new file mode 100644 index 00000000..0cee7191 --- /dev/null +++ b/project/tests/Setup.test.ts @@ -0,0 +1,16 @@ +//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"; diff --git a/project/vitest.config.ts b/project/vitest.config.ts index 3975648c..957e4d88 100644 --- a/project/vitest.config.ts +++ b/project/vitest.config.ts @@ -8,6 +8,7 @@ export default defineConfig({ api: 51204, reporters: ["default"], root: "./", + include: ["tests/Setup.test.ts"], cache: false, environment: "./tests/CustomEnvironment.ts", globals: true,