You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
fixtures
fixtures/seed_files
fixtures/images
fixtures/translations
...
Development Setup
cypress": "^5.6.0
cypress-file-upload": "^5.0.2"
node version: 15.3.0
The text was updated successfully, but these errors were encountered:
What would you like?
Currently fixture files (
yml
,json
, etc) and fixture images (usingcypress-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: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:fixtures
fixtures/seed_files
fixtures/images
fixtures/translations
Development Setup
cypress": "^5.6.0
cypress-file-upload": "^5.0.2"
node
version:15.3.0
The text was updated successfully, but these errors were encountered: