File tree Expand file tree Collapse file tree 7 files changed +31
-23
lines changed
expected-cypress-js-component-create-react-app-v5
expected-cypress-js-e2e-without-fixtures
pristine-cjs-project/expected-cypress-js-component-vue.js-3-webpack
pristine-module/expected-cypress-js-e2e Expand file tree Collapse file tree 7 files changed +31
-23
lines changed Original file line number Diff line number Diff line change
1
+ # purposeful syntax errors
1
2
system-tests /projects /config-with-ts-module-error /cypress.config.ts
2
3
system-tests /projects /config-with-ts-syntax-error /cypress.config.ts
3
4
system-tests /projects /e2e /cypress /e2e /stdout_exit_early_failing.cy.js
4
5
system-tests /projects /e2e /cypress /e2e /typescript_syntax_error.cy.ts
5
6
system-tests /projects /e2e /lib /fail.js
6
7
system-tests /projects /e2e /static /fail.js
7
- system-tests /projects /e2e /static /jquery.js
8
8
system-tests /projects /ids /cypress /e2e /dom.jsx
9
9
system-tests /projects /no-specs /src /Invalid.jsx
10
10
system-tests /projects /todos /tests /_fixtures /bad_js.js
@@ -14,3 +14,14 @@ system-tests/projects/todos/tests/_fixtures/nested/fixture.js
14
14
system-tests /projects /todos /tests /_fixtures /no_format.js
15
15
system-tests /projects /todos /tests /_fixtures /trailing_new_line.js
16
16
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
Original file line number Diff line number Diff line change 13
13
],
14
14
"rules" : {
15
15
"no-console" : " off"
16
- },
17
- "ignorePatterns" : [
18
- " project-fixtures/react/src/AppCompilationError.cy.jsx"
19
- ]
16
+ }
20
17
}
Original file line number Diff line number Diff line change 1
- const { defineConfig } = require ( ' cypress' )
1
+ const { defineConfig } = require ( " cypress" ) ;
2
2
3
- const webpackConfig = require ( ' ./webpack.config.js' )
3
+ const webpackConfig = require ( " ./webpack.config.js" ) ;
4
4
5
5
module . exports = defineConfig ( {
6
6
component : {
7
7
devServer : {
8
- framework : ' vue' ,
9
- bundler : ' webpack' ,
8
+ framework : " vue" ,
9
+ bundler : " webpack" ,
10
10
webpackConfig,
11
11
} ,
12
12
} ,
13
- } )
13
+ } ) ;
Original file line number Diff line number Diff line change 1
- import { defineConfig } from ' cypress'
1
+ import { defineConfig } from " cypress" ;
2
2
3
3
export default defineConfig ( {
4
4
e2e : {
5
- setupNodeEvents ( on , config ) {
5
+ setupNodeEvents ( on , config ) {
6
6
// implement node event listeners here
7
7
} ,
8
8
} ,
9
- } )
9
+ } ) ;
Original file line number Diff line number Diff line change 1
- const { defineConfig } = require ( ' cypress' )
1
+ const { defineConfig } = require ( " cypress" ) ;
2
2
3
3
module . exports = defineConfig ( {
4
4
component : {
5
5
devServer : {
6
- framework : ' create-react-app' ,
7
- bundler : ' webpack' ,
6
+ framework : " create-react-app" ,
7
+ bundler : " webpack" ,
8
8
} ,
9
9
} ,
10
- } )
10
+ } ) ;
Original file line number Diff line number Diff line change 1
- const { defineConfig } = require ( ' cypress' )
1
+ const { defineConfig } = require ( " cypress" ) ;
2
2
3
3
module . exports = defineConfig ( {
4
4
e2e : {
5
- setupNodeEvents ( on , config ) {
5
+ setupNodeEvents ( on , config ) {
6
6
// implement node event listeners here
7
7
} ,
8
8
} ,
9
- } )
9
+ } ) ;
Original file line number Diff line number Diff line change 1
- const { defineConfig } = require ( ' cypress' )
1
+ const { defineConfig } = require ( " cypress" ) ;
2
2
3
3
module . exports = defineConfig ( {
4
4
e2e : {
5
- setupNodeEvents ( on , config ) {
5
+ setupNodeEvents ( on , config ) {
6
6
// implement node event listeners here
7
7
} ,
8
8
} ,
9
- } )
9
+ } ) ;
You can’t perform that action at this time.
0 commit comments