Skip to content

Commit cc13866

Browse files
amirrustamcowboyjaffrepauljennifer-shehaneKevin Old
authored
Release v10 testing branch (#750)
Co-authored-by: Ben Alman <[email protected]> Co-authored-by: Paul Jaffre <[email protected]> Co-authored-by: Jennifer Shehane <[email protected]> Co-authored-by: Kevin Old <[email protected]> Co-authored-by: ElevateBart <[email protected]> Co-authored-by: Tyler Biethman <[email protected]>
1 parent 77ea242 commit cc13866

File tree

487 files changed

+1877
-1710
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

487 files changed

+1877
-1710
lines changed

.circleci/config.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,16 @@ jobs:
5757
steps:
5858
- checkout
5959
- restore_cache:
60-
key: cache-dirs-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "circle.yml" }}
60+
key: cache-dirs-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum ".circleci/config.yml" }}
6161
- run: npm ci
6262

63-
# Use Git commit message to install any pre-release versions of Cypress
64-
- run: npm i -g @cypress/commit-message-install
65-
# if there is no special JSON comment in the current commit body
66-
# then this command does nothing
67-
- run: commit-message-install --else "echo nothing custom to install"
68-
6963
# run verify and then save cache.
7064
# this ensures that the Cypress verified status is cached too
7165
- run: npm run cypress:verify
7266
- run: npm run cypress:info
7367
- run: npm run stop-only
7468
- save_cache:
75-
key: cache-dirs-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "circle.yml" }}
69+
key: cache-dirs-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum ".circleci/config.yml" }}
7670
paths:
7771
- ~/.npm
7872
- ~/.cache
@@ -334,8 +328,8 @@ jobs:
334328
<<: *defaults
335329
server-communication__stream-tests:
336330
<<: *defaults
337-
server-communication__offline:
338-
<<: *defaults
331+
# server-communication__offline:
332+
# <<: *defaults
339333
server-communication__server-timing:
340334
<<: *defaults
341335
server-communication__wait-for-api:
@@ -639,9 +633,9 @@ all_jobs: &all_jobs
639633
- server-communication__stream-tests:
640634
requires:
641635
- build
642-
- server-communication__offline:
643-
requires:
644-
- build
636+
# - server-communication__offline:
637+
# requires:
638+
# - build
645639
- server-communication__server-timing:
646640
requires:
647641
- build
@@ -708,7 +702,7 @@ all_jobs: &all_jobs
708702
- server-communication__visit-2nd-domain
709703
- server-communication__pass-value-between-specs
710704
- server-communication__stream-tests
711-
- server-communication__offline
705+
# - server-communication__offline
712706
- server-communication__server-timing
713707
- server-communication__wait-for-api
714708
- server-communication__request

README.md

Lines changed: 7 additions & 5 deletions

appveyor.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

examples/blogs__a11y/README.md

Lines changed: 3 additions & 3 deletions
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const { defineConfig } = require('cypress')
2+
3+
module.exports = defineConfig({})

examples/blogs__a11y/cypress.json

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const { defineConfig } = require('cypress')
2+
3+
module.exports = defineConfig({
4+
fixturesFolder: false,
5+
defaultCommandTimeout: 8000,
6+
e2e: {
7+
baseUrl: 'http://localhost:8888',
8+
excludeSpecPattern: 'utils.js',
9+
},
10+
})

0 commit comments

Comments
 (0)