Skip to content

Commit 31f2813

Browse files
committed
fix pristine snapshots
run ci
1 parent 05ce462 commit 31f2813

File tree

7 files changed

+31
-23
lines changed

7 files changed

+31
-23
lines changed

system-tests/.eslintignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
# purposeful syntax errors
12
system-tests/projects/config-with-ts-module-error/cypress.config.ts
23
system-tests/projects/config-with-ts-syntax-error/cypress.config.ts
34
system-tests/projects/e2e/cypress/e2e/stdout_exit_early_failing.cy.js
45
system-tests/projects/e2e/cypress/e2e/typescript_syntax_error.cy.ts
56
system-tests/projects/e2e/lib/fail.js
67
system-tests/projects/e2e/static/fail.js
7-
system-tests/projects/e2e/static/jquery.js
88
system-tests/projects/ids/cypress/e2e/dom.jsx
99
system-tests/projects/no-specs/src/Invalid.jsx
1010
system-tests/projects/todos/tests/_fixtures/bad_js.js
@@ -14,3 +14,14 @@ system-tests/projects/todos/tests/_fixtures/nested/fixture.js
1414
system-tests/projects/todos/tests/_fixtures/no_format.js
1515
system-tests/projects/todos/tests/_fixtures/trailing_new_line.js
1616
system-tests/projects/todos/tests/_fixtures/user.js
17+
system-tests/project-fixtures/react/src/AppCompilationError.cy.jsx
18+
19+
# 3rd party
20+
system-tests/projects/e2e/static/jquery.js
21+
22+
# snapshots
23+
system-tests/projects/pristine/expected-cypress-js-component-create-react-app-v5/cypress.config.js
24+
system-tests/projects/pristine/expected-cypress-js-e2e/cypress.config.js
25+
system-tests/projects/pristine/expected-cypress-js-e2e-without-fixtures/cypress.config.js
26+
system-tests/projects/pristine-module/expected-cypress-js-e2e/cypress.config.js
27+
system-tests/projects/pristine-cjs-project/expected-cypress-js-component-vue.js-3-webpack/cypress.config.js

system-tests/.eslintrc.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,5 @@
1313
],
1414
"rules": {
1515
"no-console": "off"
16-
},
17-
"ignorePatterns": [
18-
"project-fixtures/react/src/AppCompilationError.cy.jsx"
19-
]
16+
}
2017
}
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
const { defineConfig } = require('cypress')
1+
const { defineConfig } = require("cypress");
22

3-
const webpackConfig = require('./webpack.config.js')
3+
const webpackConfig = require("./webpack.config.js");
44

55
module.exports = defineConfig({
66
component: {
77
devServer: {
8-
framework: 'vue',
9-
bundler: 'webpack',
8+
framework: "vue",
9+
bundler: "webpack",
1010
webpackConfig,
1111
},
1212
},
13-
})
13+
});
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { defineConfig } from 'cypress'
1+
import { defineConfig } from "cypress";
22

33
export default defineConfig({
44
e2e: {
5-
setupNodeEvents (on, config) {
5+
setupNodeEvents(on, config) {
66
// implement node event listeners here
77
},
88
},
9-
})
9+
});
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
const { defineConfig } = require('cypress')
1+
const { defineConfig } = require("cypress");
22

33
module.exports = defineConfig({
44
component: {
55
devServer: {
6-
framework: 'create-react-app',
7-
bundler: 'webpack',
6+
framework: "create-react-app",
7+
bundler: "webpack",
88
},
99
},
10-
})
10+
});
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
const { defineConfig } = require('cypress')
1+
const { defineConfig } = require("cypress");
22

33
module.exports = defineConfig({
44
e2e: {
5-
setupNodeEvents (on, config) {
5+
setupNodeEvents(on, config) {
66
// implement node event listeners here
77
},
88
},
9-
})
9+
});
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
const { defineConfig } = require('cypress')
1+
const { defineConfig } = require("cypress");
22

33
module.exports = defineConfig({
44
e2e: {
5-
setupNodeEvents (on, config) {
5+
setupNodeEvents(on, config) {
66
// implement node event listeners here
77
},
88
},
9-
})
9+
});

0 commit comments

Comments
 (0)