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
@@ -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"
},