From 83aef14238f98901ff51f46b6f9517b206c67c3a Mon Sep 17 00:00:00 2001 From: "Bartlack, Mario" Date: Fri, 26 Jun 2020 14:08:22 +0200 Subject: [PATCH] fix(playground): fix error which is thrown when running the e2e tests in github actions --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index af95a365..3e5ffa85 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "playground:start:background": "docker run -p 5000:80 -d --rm -v $(pwd)/playground/public:/usr/share/nginx/html --name playground nginx:alpine", "playground:stop:background": "docker stop playground", "playground:prepare": "node ./playground/scripts/prepare.js", - "playground:test:e2e": "docker run --net=host --rm -v $(pwd)/playground:/tests --name testcafe -it testcafe/testcafe:1.8.7 chromium /tests/specs/e2e/specs/*.specs.ts", + "playground:test:e2e": "docker run --net=host --rm -v $(pwd)/playground:/tests --name testcafe -t testcafe/testcafe:1.8.7 chromium /tests/specs/e2e/specs/*.specs.ts", "storybook": "start-storybook -p 9001 -s playground/public/assets", "storybook:build": "build-storybook --quiet -c .storybook -o .storybook-static && cp -R playground/public/assets/* .storybook-static", "storybook:deploy": "npm run storybook:build && storybook-to-ghpages -e .storybook-static",