test circleci config

master
helenanull 4 years ago
parent a2b71fc162
commit 7b009a88a6

@ -0,0 +1,15 @@
version: 2.1
orbs:
cypress: cypress-io/cypress@1
workflows:
build:
jobs:
- cypress/install:
build: 'npm install' # run a custom app build step
- cypress/run:
requires:
- cypress/install
record: true # record results on Cypress Dashboard
parallel: true # split all specs across machines
parallelism: 2 # use 2 CircleCI machines to finish quickly
group: 'all tests' # name this group "all tests" on the dashboard
Loading…
Cancel
Save