We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9882ea commit 5ae2460Copy full SHA for 5ae2460
.github/workflows/e2e-playwright.yml
@@ -63,7 +63,7 @@ jobs:
63
64
- name: Run tests with ENV=prod
65
working-directory: ./e2e-playwright
66
- run: ENV=prod HEAD=false BASEURL=http://localhost:8080 npm run test || exit 1
+ run: ENV=prod npm run test
67
68
- name: Upload report
69
if: failure()
e2e-playwright/config/cucumber.js
@@ -8,7 +8,6 @@ module.exports = {
8
paths: [
9
"src/features/"
10
],
11
- publishQuiet: true,
12
dryRun: false,
13
require: [
14
"src/steps/*.ts",
@@ -48,4 +47,4 @@ module.exports = {
48
47
49
parallel: 1
50
}
51
-}
+}
e2e-playwright/src/helper/env/.env.prod
@@ -1,3 +1,3 @@
1
-BASEURL = http://host.docker.internal:8080/
+BASEURL = http://localhost:8080/
2
BROWSER = chrome
3
-HEAD = false
+HEAD = false
0 commit comments