Merge pull request #21694 from backstage/fix-bugs-in-init

fix: don't use commas for jest test files
This commit is contained in:
Fredrik Adelöw
2023-12-02 07:08:17 +01:00
committed by GitHub
4 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -12,4 +12,4 @@ capture:
# ️ Requests should be sent to the Optic proxy, the address of which is injected into 'run.command's env as OPTIC_PROXY (or the value of 'run.proxy_variable').
run:
# 🔧 Specify a command that will generate traffic
command: yarn backstage-cli package test --no-watch src/service/router.test.ts src/service/createRouter.test.ts
command: yarn backstage-cli package test --no-watch "src/service/router.test.ts" "src/service/createRouter.test.ts"
+1 -1
View File
@@ -12,4 +12,4 @@ capture:
# ️ Requests should be sent to the Optic proxy, the address of which is injected into 'run.command's env as OPTIC_PROXY (or the value of 'run.proxy_variable').
run:
# 🔧 Specify a command that will generate traffic
command: yarn backstage-cli package test --no-watch src/service/router.test.ts src/service/createRouter.test.ts
command: yarn backstage-cli package test --no-watch "src/service/router.test.ts" "src/service/createRouter.test.ts"