Files
discordeno/turbo.json
Fleny 8d90f28307 test: Refactor mocha config & test scripts (#4664)
* Merge mocha config file

* Simplify scripts, remove coverage path fixing

Codecov is able to fix the coverage paths on its own

* Readd coveragePathFixing script

* Fix coverage path fix script
2026-01-07 13:51:26 -06:00

63 lines
2.3 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"inputs": ["src/**/*.ts"],
"outputs": ["dist/**/*.js"]
},
"build:type": {
"dependsOn": ["^build:type"],
"inputs": ["src/**/*.ts"],
"outputs": ["dist/**/*.d.ts", "dist/**/*.d.ts.map", "dist/tsconfig.tsbuildinfo"]
},
"check": {
"dependsOn": ["build:type"],
"cache": false
},
"test:unit": {
"dependsOn": ["^build", "build"],
// We need to exclude e2e and integration test manually since when there aren't e2e or integration we don't have a unit folder
"inputs": ["src/**/*.ts", "tests/**/*.spec.ts", "!tests/e2e/**/*.spec.ts", "!tests/integration**/*.spec.ts"],
"outputs": ["coverage/**"]
},
"test:deno-unit": {
"dependsOn": ["^build", "build"],
// We need to exclude e2e and integration test manually since when there aren't e2e or integration we don't have a unit folder
"inputs": ["src/**/*.ts", "tests/**/*.spec.ts", "!tests/e2e/**/*.spec.ts", "!tests/integration**/*.spec.ts"]
},
"test:bun-unit": {
"dependsOn": ["^build", "build"],
// We need to exclude e2e and integration test manually since when there aren't e2e or integration we don't have a unit folder
"inputs": ["src/**/*.ts", "tests/**/*.spec.ts", "!tests/e2e/**/*.spec.ts", "!tests/integration**/*.spec.ts"]
},
"test:integration": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "tests/integration**/*.spec.ts"],
"outputs": ["coverage/**"]
},
"test:e2e": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "tests/e2e**/*.spec.ts"],
"outputs": ["coverage/**"],
"env": ["DISCORD_TOKEN", "E2E_TEST_GUILD_ID"]
},
"test:test-type": {
"dependsOn": ["^build:type"],
"inputs": ["src/**/*.ts", "tests/**/*.ts"]
},
"test:type": {
"dependsOn": ["^build:type"],
"inputs": ["src/**/*.ts"]
},
"check": {
"dependsOn": ["build:type"],
"cache": false
},
"build:doc": {
// NOTE: This task can only be run with "--singe-package" in the flags to turbo, as it is defined only in the root package.json
"inputs": ["packages/**/src/**/*.ts"],
"outputs": ["website/api_reference/generated/**/*"]
}
}
}