From ed609f0bec7e2cfe4a246fa9adcdc3a2aede2c17 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Thu, 1 Jun 2023 11:37:45 +1000 Subject: [PATCH] Remove cypress color output --- test/cypress/Dockerfile | 4 ++++ test/cypress/config/ci.js | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/test/cypress/Dockerfile b/test/cypress/Dockerfile index fb9714b..590c0ce 100644 --- a/test/cypress/Dockerfile +++ b/test/cypress/Dockerfile @@ -2,6 +2,10 @@ FROM cypress/included:12.13.0 COPY --chown=1000 ./test /test +# Disable Cypress CLI colors +ENV FORCE_COLOR=0 +ENV NO_COLOR=1 + WORKDIR /test RUN yarn install && yarn cache clean ENTRYPOINT [] diff --git a/test/cypress/config/ci.js b/test/cypress/config/ci.js index 83a8f79..9b832a3 100644 --- a/test/cypress/config/ci.js +++ b/test/cypress/config/ci.js @@ -14,7 +14,6 @@ module.exports = defineConfig({ RETRIES: 4 }, e2e: { - // baseUrl: '{{baseUrl}}', setupNodeEvents(on, config) { return require('../plugins/index.js')(on, config); },