diff --git a/.circleci/config.yml b/.circleci/config.yml index 84f0962c92c..5adda99fe40 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -496,7 +496,7 @@ jobs: - node_modules - run: name: Run end-to-end tests - command: env BASE_URL=http://127.0.0.1:3000 yarn e2e-tests:ci + command: env BASE_URL=http://127.0.0.1:3000 yarn e2e-tests no_output_timeout: 5m - store_artifacts: path: public/e2e-tests/screenShots/theTruth @@ -624,7 +624,7 @@ jobs: - node_modules - run: name: run end-to-end tests - command: 'env BASE_URL=http://127.0.0.1:3000 yarn e2e-tests:ci' + command: 'env BASE_URL=http://127.0.0.1:3000 yarn e2e-tests' no_output_timeout: 5m - store_artifacts: path: public/e2e-tests/screenShots/theTruth @@ -666,7 +666,7 @@ jobs: - node_modules - run: name: run end-to-end tests - command: 'env BASE_URL=http://127.0.0.1:3000 yarn e2e-tests:ci' + command: 'env BASE_URL=http://127.0.0.1:3000 yarn e2e-tests' no_output_timeout: 5m - store_artifacts: path: public/e2e-tests/screenShots/theTruth diff --git a/package.json b/package.json index 88341c9c717..99f9bb74db7 100644 --- a/package.json +++ b/package.json @@ -163,7 +163,6 @@ "jest-ci": "mkdir -p reports/junit && export JEST_JUNIT_OUTPUT_DIR=reports/junit && jest --ci --reporters=default --reporters=jest-junit --maxWorkers 2", "e2e": "cd packages/grafana-e2e && yarn start --env BASE_URL=$BASE_URL,CIRCLE_SHA1=$CIRCLE_SHA1,SLOWMO=$SLOWMO --config integrationFolder=../../public/e2e-tests/integration,screenshotsFolder=../../public/e2e-tests/screenShots,videosFolder=../../public/e2e-tests/videos,fileServerFolder=./cypress,viewportWidth=1920,viewportHeight=1080,trashAssetsBeforeRuns=false", "e2e-tests": "yarn e2e", - "e2e-tests:ci": "yarn e2e --record", "e2e-tests:debug": "SLOWMO=1 yarn e2e --headed --no-exit", "api-tests": "jest --notify --watch --config=devenv/e2e-api-tests/jest.js", "storybook": "cd packages/grafana-ui && yarn storybook --ci",