2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-17 05:49:37 +03:00

chore: run correct tests in circleci

This commit is contained in:
pimlie
2019-03-21 14:23:15 +01:00
committed by Pim
parent 5d76f7f5e3
commit cefce0749f
+14 -13
View File
@@ -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] }