apply requested pr changes

Signed-off-by: Matteo Silvestri <matteosilv@gmail.com>
This commit is contained in:
Matteo Silvestri
2022-09-01 11:49:59 +02:00
parent 8a59bedadd
commit 9b05fd5f93
3 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -32,7 +32,7 @@
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean",
"start": "backstage-cli package start",
"test:kubernetes:ci": "backstage-cli test -t KubernetesContainerRunner --watchAll=false --ci"
"test:kubernetes": "backstage-cli package test -t KubernetesContainerRunner --no-watch"
},
"dependencies": {
"@backstage/cli-common": "^0.1.9",
@@ -26,7 +26,9 @@ import {
import { RunContainerOptions } from './ContainerRunner';
import { PassThrough } from 'stream';
const describeIfKubernetes = Boolean(process.env.KUBERNETES)
// This ensures E2E tests that require a Kubernetes cluster are only run
// where KUBERNETES_TESTS environment variable is true
const describeIfKubernetes = Boolean(process.env.KUBERNETES_TESTS)
? describe
: describe.skip;