Skip to content

Commit ff52bb4

Browse files
chore(cypress): fixes cypress e2e test pipeline (#695)
fix: cypress:run broken command fixed by cypress.config and file naming convention update Co-authored-by: Ricardo Lüders <[email protected]>
1 parent 1fa7542 commit ff52bb4

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cypress.config.ts

cypress.config.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/* eslint-disable @typescript-eslint/no-unused-vars */
2+
/* eslint-disable @typescript-eslint/no-empty-function */
3+
import { defineConfig } from 'cypress';
4+
5+
export default defineConfig({
6+
fixturesFolder: false,
7+
e2e: {
8+
setupNodeEvents(_on, _config) {},
9+
baseUrl: 'http://localhost:3000',
10+
},
11+
});

cypress.json

Lines changed: 0 additions & 5 deletions
This file was deleted.
File renamed without changes.

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"target": "ESNext",
2020
"types": ["@testing-library/jest-dom", "node", "vitest"]
2121
},
22-
"exclude": ["/build", "/lib"],
22+
"exclude": ["/build", "/lib", "./cypress.config.ts"],
2323
"include": ["**/*.js", "**/*.ts", "**/*.tsx"]
2424
}

0 commit comments

Comments
 (0)