We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 386dd89 commit 73e9532Copy full SHA for 73e9532
src/utils/config.ts
@@ -97,25 +97,6 @@ export default {
97
`The supplied cypress_project_dir in testingbot.json is not a directory: ${config.run_settings.cypress_project_dir}`,
98
);
99
}
100
-
101
- try {
102
- if (
103
- !fs
104
- .statSync(
105
- path.join(
106
- config.run_settings.cypress_project_dir,
107
- 'cypress.json',
108
- ),
109
- )
110
- .isFile()
111
- ) {
112
- throw new Error();
113
- }
114
- } catch (e) {
115
- errors.push(
116
- `Could not find cypress.json in cypress_project_dir directory: ${config.run_settings.cypress_project_dir}`,
117
- );
118
119
120
121
return errors;
0 commit comments