Skip to content

Commit 571ba9f

Browse files
authored
Merge pull request #2293 from system-ui/dependabot/npm_and_yarn/cypress-10.4.0
chore(deps): bump cypress from 9.6.0 to 10.4.0
2 parents e823f86 + 72f7446 commit 571ba9f

File tree

16 files changed

+2065
-1587
lines changed

16 files changed

+2065
-1587
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: yarn build # build preconstruct libs
3333
- run: yarn build:docs
3434

35-
- uses: cypress-io/github-action@v2
35+
- uses: cypress-io/github-action@v4
3636
with:
3737
record: true
3838
parallel: true

examples/custom-pragma/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@mdx-js/mdx": "^1.6.22",
1515
"@mdx-js/react": "^1.6.22",
16-
"gatsby": "^4.13.1",
16+
"gatsby": "^4.20.0",
1717
"gatsby-plugin-mdx": "^3.10.2",
1818
"react": "^18.1.0",
1919
"react-dom": "^18.1.0",

examples/dark-mode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@mdx-js/mdx": "^1.6.22",
1515
"@mdx-js/react": "^1.6.22",
16-
"gatsby": "^4.13.1",
16+
"gatsby": "^4.20.0",
1717
"gatsby-plugin-mdx": "^1.6.0",
1818
"react": "^18.1.0",
1919
"react-dom": "^18.1.0",

examples/gatsby-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@emotion/react": "^11.8.1",
1616
"@mdx-js/mdx": "^1.6.22",
1717
"@mdx-js/react": "^1.6.22",
18-
"gatsby": "^4.13.1",
18+
"gatsby": "^4.20.0",
1919
"gatsby-plugin-mdx": "^3.7.1",
2020
"gatsby-plugin-theme-ui": "latest",
2121
"react": "^18.1.0",

examples/gatsby/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@emotion/react": "^11.8.1",
1616
"@mdx-js/mdx": "^1.6.22",
1717
"@mdx-js/react": "^1.6.22",
18-
"gatsby": "^4.13.1",
18+
"gatsby": "^4.20.0",
1919
"gatsby-plugin-mdx": "^3.7.1",
2020
"react": "^18.1.0",
2121
"react-dom": "^18.1.0",

examples/prism/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@mdx-js/mdx": "^1.6.22",
1515
"@mdx-js/react": "^1.6.22",
16-
"gatsby": "^4.13.1",
16+
"gatsby": "^4.20.0",
1717
"gatsby-plugin-mdx": "^1.6.0",
1818
"gatsby-remark-prismjs": "^3.2.9",
1919
"prismjs": "^1.16.0",

examples/typography/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@mdx-js/mdx": "^1.6.22",
1515
"@mdx-js/react": "^1.6.22",
16-
"gatsby": "^4.13.1",
16+
"gatsby": "^4.20.0",
1717
"gatsby-plugin-google-fonts": "^1.0.0",
1818
"gatsby-plugin-mdx": "^1.6.0",
1919
"lodash.merge": "^4.6.1",

packages/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@theme-ui/typography": "0.14.7",
3333
"copy-to-clipboard": "^3.2.0",
3434
"eslint-config-react-app": "^6.0.0",
35-
"gatsby": "^4.13.1",
35+
"gatsby": "^4.20.0",
3636
"gatsby-plugin-catch-links": "^4.2.0",
3737
"gatsby-plugin-compile-es6-packages": "^2.1.1",
3838
"gatsby-plugin-mdx": "3.2.0",

packages/e2e/cypress.config.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
const { defineConfig } = require('cypress')
2+
3+
module.exports = defineConfig({
4+
screenshotsFolder: 'screenshots',
5+
videosFolder: 'videos',
6+
downloadsFolder: 'downloads',
7+
fixturesFolder: 'fixtures',
8+
retries: {
9+
runMode: 1,
10+
openMode: 3,
11+
},
12+
projectId: 'fmfid1',
13+
e2e: {
14+
// We've imported your old cypress plugins here.
15+
// You may want to clean this up later by importing these.
16+
setupNodeEvents(on, config) {
17+
return require('./plugins.js')(on, config)
18+
},
19+
baseUrl: 'http://localhost:9000',
20+
supportFile: 'support.ts',
21+
specPattern: 'integration/**/*.*',
22+
},
23+
})

packages/e2e/cypress.json

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

0 commit comments

Comments
 (0)