diff --git a/circle.yml b/circle.yml index 9155ee3b..a9b28aef 100644 --- a/circle.yml +++ b/circle.yml @@ -2,69 +2,24 @@ # for config.yml syntax see https://circleci.com/docs/2.0/configuration-reference/ version: 2.1 -# for testing on Windows -orbs: - win: circleci/windows@5 - -executors: - mac: - macos: - xcode: "14.3.1" - resource_class: macos.m1.medium.gen1 - jobs: - mac-test: - executor: mac - - working_directory: ~/repo - - steps: - - checkout - - run: npm ci - - run: npm install cypress - - run: npm run cypress:info - - run: npm run cypress:version - - run: npm run cypress:run - - run: npm run cypress:cache:list - linux-test: docker: # find Docker image at https://github.com/cypress-io/cypress-docker-images - - image: cypress/base:18.16.1 + - image: cypress/base:latest working_directory: ~/repo steps: - checkout - run: npm ci - - run: npm install cypress - - run: npm run cypress:info - - run: npm run cypress:version - - run: npm run cypress:run - - run: npm run cypress:cache:list + - run: npx cypress run --record - win-test: - working_directory: ~/app - executor: - name: win/default - shell: bash.exe - steps: - - checkout - - run: npm ci - - run: npm install cypress - - run: npm run cypress:info - - run: npm run cypress:version - - run: npm run cypress:run - - run: npm run cypress:cache:list workflows: version: 2 tests: jobs: - - win-test: - context: test-runner:commit-status-checks - linux-test: - context: test-runner:commit-status-checks - - mac-test: - context: test-runner:commit-status-checks + context: verify-staging diff --git a/cypress.config.js b/cypress.config.js index bc214b1d..8fa50f51 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,4 +1,5 @@ module.exports = { + projectId: '31rzrx', e2e: { setupNodeEvents(on, config) {}, },