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 b437119 commit ed609f0Copy full SHA for ed609f0
test/cypress/Dockerfile
@@ -2,6 +2,10 @@ FROM cypress/included:12.13.0
2
3
COPY --chown=1000 ./test /test
4
5
+# Disable Cypress CLI colors
6
+ENV FORCE_COLOR=0
7
+ENV NO_COLOR=1
8
+
9
WORKDIR /test
10
RUN yarn install && yarn cache clean
11
ENTRYPOINT []
test/cypress/config/ci.js
@@ -14,7 +14,6 @@ module.exports = defineConfig({
14
RETRIES: 4
15
},
16
e2e: {
17
- // baseUrl: '{{baseUrl}}',
18
setupNodeEvents(on, config) {
19
return require('../plugins/index.js')(on, config);
20
0 commit comments