diff --git a/cypress/fixtures/profile.json b/cypress/fixtures/profile.json index a95e88f9..b6c355ca 100644 --- a/cypress/fixtures/profile.json +++ b/cypress/fixtures/profile.json @@ -2,4 +2,4 @@ "id": 8739, "name": "Jane", "email": "jane@example.com" -} +} \ No newline at end of file diff --git a/cypress/fixtures/users.json b/cypress/fixtures/users.json index 82a0056b..79b699aa 100644 --- a/cypress/fixtures/users.json +++ b/cypress/fixtures/users.json @@ -229,4 +229,4 @@ "bs": "target end-to-end models" } } -] +] \ No newline at end of file diff --git a/cypress/screenshots/2-advanced-examples/misc.cy.js/my-image.png b/cypress/screenshots/2-advanced-examples/misc.cy.js/my-image.png deleted file mode 100644 index 2fcaf653..00000000 Binary files a/cypress/screenshots/2-advanced-examples/misc.cy.js/my-image.png and /dev/null differ diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json new file mode 100644 index 00000000..03852b63 --- /dev/null +++ b/cypress/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "es5", + "dom" + ], + "types": [ + "cypress", + "node" + ] + }, + "include": [ + "../node_modules/cypress", + "**/*.ts" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 78c42783..a753b748 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,11 @@ }, "compilerOptions": { "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -26,7 +30,9 @@ } ], "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] } }, "include": [ @@ -37,5 +43,9 @@ ".next/types/**/*.ts", "jest.config.mjs" ], - "exclude": ["node_modules"] -} + "exclude": [ + "node_modules", + "cypress.config.ts", + "cypress" + ] +} \ No newline at end of file