saleor-apps-redis_apl/turbo.json
Lukasz Ostrowski 7c98e384fd
E2E tests (#668)
* playwright install

* Configrations

* assertions

* basic tests for apps installations

* tests for product feed

* Adjust PF assertions to use test-id

* Taxes smoke test

* moved files around

* Add smoke for Klaviyo

* More taxes tests

* remove workflow

* add example

* extract separate test for pf

* Improve PF test

* cr fixes
2023-06-28 17:08:00 +02:00

30 lines
769 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["VERCEL_ENV", "APP_LOG_LEVEL", "NODE_ENV", "CI"],
"pipeline": {
"build": {
"env": ["NEXT_PUBLIC_VERCEL_ENV"],
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"lint": {
"inputs": ["src"],
"outputs": []
},
"dev": {
"persistent": true,
"cache": false
},
"test": {
"inputs": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/*.spec.ts", "src/**/*.spec.tsx"]
},
"test:ci": {
"inputs": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/*.spec.ts", "src/**/*.spec.tsx"]
},
"generate": {
"outputs": ["generated/"]
},
"lint:fix": {}
}
}