Files
trackgo-fe/turbo.json
T
Firman Ramdhani 914c267e66 feat(tests): add basic arithmetic functions and corresponding tests
- Implemented `add` and `subtract` functions in multiple packages (web, ui, utils).
- Created unit tests for these functions using Vitest in respective test files.
- Updated turbo.json to include a new test pipeline for coverage and watch mode.
2026-01-14 18:35:20 +07:00

50 lines
793 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"inputs": [
"$TURBO_DEFAULT$",
".env*"
],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
]
},
"lint": {
"dependsOn": [
"^lint"
]
},
"check-types": {
"dependsOn": [
"^check-types"
]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": [
"^test"
],
"inputs": [
"$TURBO_DEFAULT$"
],
"outputs": [
"coverage/**",
".vitest/**"
]
},
"test:watch": {
"cache": false,
"persistent": true
}
}
}