From 57901d726fbb105e4a72cbe4b3b8bdf0198c4c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Maisse?= Date: Sun, 9 May 2021 18:48:26 +0200 Subject: [PATCH] e2e: convert CRA bench to a bare CircleCI script There is no need to run Cypress tests as there is already some E2E with CRA (simple + TypeScript) --- .circleci/config.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6332c01e009..4b9d0aa1023 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -229,7 +229,7 @@ jobs: - store_artifacts: path: /tmp/storybook/cypress destination: cypress - e2e-tests-cra-bench: + cra-bench: executor: class: medium name: sb_cypress_6_node_12 @@ -246,15 +246,13 @@ jobs: - run: name: Wait for registry command: yarn wait-on http://localhost:6000 - - run: - name: Set registry - command: yarn config set npmRegistryServer http://localhost:6000/ - run: name: Run @storybook/bench on a CRA project - command: yarn test:e2e-framework cra_bench - - store_artifacts: - path: /tmp/storybook/cypress - destination: cypress + command: | + cd .. + npx create-react-app cra-bench + cd cra-bench + npx @storybook/bench 'npx sb init' --label cra e2e-tests-pnp: executor: class: medium @@ -451,7 +449,7 @@ workflows: - e2e-tests-pnp: requires: - publish - - e2e-tests-cra-bench: + - cra-bench: requires: - publish deploy: