I have generated cypress folder..In that i could see only support and fixture folders. Integration and plugin folders are missing...pls help to resolve
Asked
Active
Viewed 5,581 times
2 Answers
1
Encountered this myself, following what I now believe is an out-of-date tutorial. Apparently both the Integration folder and Plugins file/folder are deprecated, no longer created at install/setup.
Although it is difficult to interpret the documentation:
- This Cypress documentation link seems to be the current Configuration, Folders / Files. No
pluginsFile
and nointegrationFolder
. - This Cypress documentation link is the Legacy Configuration, Folders / Files. It includes both the
pluginsFile
(and folder) and, theintegrationFolder
.

ScottWelker
- 1,701
- 17
- 30
0
The plugins file is no longer supported after Cypress version 10.0.0. You should use config.js or config.ts
-
This seems to be 1/2 an answer, Substantiated here: [pluginsFile option was removed](https://docs.cypress.io/guides/references/changelog#10-0-0:~:text=pluginsFile%20option%20was%20removed). – ScottWelker Aug 18 '22 at 23:43