-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Description
What would you like?
Currently fixture files (yml, json, etc) and fixture images (using cypress-file-upload module to test upload functionalities) should be directly inside the /fixtures directory, and creating directories inside /fixtures and placing the files there, would trigger an error that:
A fixture file could not be found at any of the following paths:
Having the fixture files directly under /fixtures causes no issues:
However having the under a subdirectory ( like: /fixtures/translations) causes the issue:
Why is this needed?
This is needed for better organizing fixtures files. Currently we have many fixtures files, from various translations, database seeding files to image files (for testing upload functionalities using cypress-file-upload module). At this moment all the files are mixed together inside /fixtures directory but ideally we would prefer to have separate sub directories like:
fixturesfixtures/seed_filesfixtures/imagesfixtures/translations- ...
Development Setup
cypress": "^5.6.0cypress-file-upload": "^5.0.2"nodeversion:15.3.0



