From cefce0749fddb24841b3bcf6fa1eb192f55035f4 Mon Sep 17 00:00:00 2001 From: pimlie Date: Thu, 21 Mar 2019 14:23:15 +0100 Subject: [PATCH] chore: run correct tests in circleci --- .circleci/config.yml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 06b3af2..28268a0 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,7 +91,7 @@ jobs: at: ~/project - run: name: E2E Tests - command: yarn test:e2e-ssr + command: yarn test:e2e-browser environment: BROWSER_STRING: firefox @@ -103,7 +103,7 @@ jobs: at: ~/project - run: name: E2E Tests - command: yarn test:e2e-ssr + command: yarn test:e2e-browser environment: BROWSER_STRING: chrome @@ -115,7 +115,7 @@ jobs: at: ~/project - run: name: E2E Tests - command: yarn test:e2e-ssr + command: yarn test:e2e-browser environment: BROWSER_STRING: browserstack/local/ie:9 @@ -127,7 +127,7 @@ jobs: at: ~/project - run: name: E2E Tests - command: yarn test:e2e-ssr + command: yarn test:e2e-browser environment: BROWSER_STRING: browserstack/local/edge:15 @@ -139,7 +139,7 @@ jobs: at: ~/project - run: name: E2E Tests - command: yarn test:e2e-ssr + command: yarn test:e2e-browser environment: BROWSER_STRING: browserstack/local/os x=snow leopard/safari:5.1 @@ -149,11 +149,12 @@ workflows: commit: jobs: - setup - - lint: { requires: [setup] } - - audit: { requires: [setup] } - - test-unit: { requires: [lint] } - - test-e2e-ssr: { requires: [lint] } - - test-e2e-chrome: { requires: [test-e2e-ssr] } - - test-e2e-ie: { requires: [test-e2e-ssr] } - - test-e2e-edge: { requires: [test-e2e-ssr] } - - test-e2e-safari: { requires: [test-e2e-ssr] } + - lint: { requires: [setup] } + - audit: { requires: [setup] } + - test-unit: { requires: [lint] } + - test-e2e-ssr: { requires: [lint] } + - test-e2e-firefox: { requires: [test-e2e-ssr] } + - test-e2e-chrome: { requires: [test-e2e-ssr] } + - test-e2e-ie: { requires: [test-e2e-ssr] } + - test-e2e-edge: { requires: [test-e2e-ssr] } + - test-e2e-safari: { requires: [test-e2e-ssr] }