Add workflow step for cypress test

This commit is contained in:
Marcus Eide
2020-04-17 13:50:20 +02:00
parent b5f24a7d19
commit f5c67a4740
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -65,3 +65,9 @@ jobs:
working-directory: ${{ runner.temp }}/test-app
env:
BACKSTAGE_E2E_CLI_TEST: true
- name: run e2e tests in test app
run: yarn test:e2e:ci
working-directory: ${{ runner.temp }}/test-app/packages/app
env:
PORT: 3001
BACKSTAGE_E2E_CLI_TEST: true
@@ -1,5 +1,5 @@
{
"baseUrl": "http://localhost:3000",
"baseUrl": "http://localhost:3001",
"fixturesFolder": false,
"pluginsFile": false
}
@@ -31,8 +31,8 @@
"bundle": "backstage-cli app:build",
"test": "backstage-cli test",
"lint": "backstage-cli lint",
"test:e2e": "start-server-and-test start http://localhost:3000 cy:dev",
"test:e2e:ci": "start-server-and-test start http://localhost:3000 cy:run",
"test:e2e": "PORT=3001 start-server-and-test start http://localhost:3001 cy:dev",
"test:e2e:ci": "PORT=3001 start-server-and-test start http://localhost:3001 cy:run",
"cy:dev": "cypress open",
"cy:run": "cypress run"
},