Files
medusa-store/www/turbo.json
Shahed Nasser 40db4c22d3 docs: added support for tests in www workspace (#14415)
* tests for components (WIP)

* finished adding tests to components

* added tests for providers

* add test command to doc tests

* fix imports

* exclude test files

* remove import

* add vitest as dev dependency

* fix build error

* ignore test files from eslint

* fix test from docs-ui
2025-12-30 13:19:57 +02:00

44 lines
840 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**",
"build/**",
"dist/**"
]
},
"prep": {
"dependsOn": [
"^tags#build",
"^build-scripts#build"
]
},
"start:monorepo": {
"dependsOn": [
"^build-scripts#build",
"^docs-ui#build",
"^remark-rehype-plugins#build",
"^types#build"
]
},
"lint": { },
"lint:content": { },
"test": { },
"watch": { },
"dev:monorepo": {
"dependsOn": [
"^build-scripts#build",
"^docs-ui#build",
"^remark-rehype-plugins#build",
"^types#build"
],
"cache": false,
"persistent": true
}
}
}