cypress: Fixtures do not support JavaScript in .js files
Current behavior:
Any attempt to use valid ES5 (e.g. var, require) let alone ES6 (import, export, const) results in syntax errors, e.g.:
Error: 'admin.js' is not a valid JavaScript object.SyntaxError: Unexpected token var
Because this error occurred during a 'before each' hook we are skipping the remaining tests in the current suite: 'when login is valid'
The only “javascripty” construct that seems to be allowed is module.exports =.
Desired behavior:
.js fixtures should support valid JS syntax (ES6, preferably).
How to reproduce:
Create a fixture containing valid ES6 syntax
const user = 'Joe'
export default {
user,
}
Then use it:
cy.fixture('auth.js')
Result:
Error: 'auth.js' is not a valid JavaScript object.
auth.js:3
export default {
^
ParseError: Unexpected token
Create a fixture using valid ES5 code
var user = 'Joe';
module.exports = {
user: user
};
Result:
Error: 'auth.js' is not a valid JavaScript object.SyntaxError: Unexpected token var
- Operating System: Darwin Kernel Version 15.6.0: Mon Nov 13 21:58:35 PST 2017; root:xnu-3248.72.11~1/RELEASE_X86_64
- Cypress Version: 1.4.2
- Browser Version: Electron 53, Chrome 64
About this issue
- Original URL
- State: open
- Created 6 years ago
- Reactions: 39
- Comments: 32 (6 by maintainers)
It’d be lovely if
*.jsfixtures were simply executed like any normal JavaScript, and they were expected to export the same fixture data that might otherwise be JSON encoded in a*.jsonfixture. Prime use case: usingfakerin a.jsfixture to generate data.It looks like this works, not ideal but might help people out.
I added a command to do this on the project I’m working on:
Then usage is:
Maybe we need to update the document to state that js fixture is not what people normally expect. I am quite surprised that this fixture works:
but not this (with semicolon automatically added by my editor setting)
This throws
Error: 'myFixture' is not a valid JavaScript object.SyntaxError: Unexpected token ;any updates on this?
Thanks @bahmutov for mentioning
cy.task.I just started with Cypress and I wanted to prevent the issue that @SLOBYYYY had. To do that, I created javascript files that exports an object and I get it with the following task:
plugins/index.js
So in your tests you can use it like this
This way you can also use libraries like faker in your
.jsfiles. You can adjust the task so that it fits your project.Hey We really need to use js in our fixtures for such simple things (I. e. generate today date) or use Faker!
Any update on the estimated timeline or roadmap to fix this? cc: @brian-mann @jennifer-shehane
Thanks in advance ❤️
Seems like it would help a ton of people if there was a mechanism to load a fixture as-is without doing whatever special magic Cypress is attempting to do with
.jsfiles. Mayberaw: trueortranspile: false?Like so:
Hello! Any news about this bug? I will much appreciate the effort in a fix, our tests are getting bigger and bigger and are hard to maintain without this functionality.
@bahmutov thanks for your guidance! What’s the benefit of using fixtures over just importing mock objects directly into your test files ?
This is my solution:
Primitive caching included, the downside is using global scope, but should be fine.
Alternative solution is to embed script in test:
The downside is no formatting/linting/etc.
I was able to get factory.ts & faker working within a fixture with the following:
then in my spec file:
Hope this helps someone. 👍
Yep, same here. I actually resorted to having a
__fixtures__directory insideintegration/{moduleName}directory. What is the use case for the fixtures you need? I am trying to mock some responses, so for now it seems better to use them directly as a value to cy.route options parameter.But, I am not really sure will this break something in the future, I haven’t researched it fully yet. Does anyone use response mocks like this?
I could not get the task option to work, as my .js fixture files had ES6 imports that were constantly failing. In the end, I just did a standard import of each fixture file at the top of each spec file and then cloned the data in a beforeEach.
The fixture was then available in each test as this.props.
Take a look at cy.task - it can be used to generate any object in node context, including fixture json files that you could load later. Or use cy.writeFile to do the same. Or even JavaScript right from the tests and instead of fixture stub in cy.route use the created object.
Sent from my iPhone
@sandro-pasquali forgot to mention that you can interop between the browser + node context seamlessly with
cy.task. You could effectively design or come up with your own fixture implementation without usingcy.fixtureat all. Just defer to acy.task, pass in arguments, and then dynamically call into whatever fixture or node.js file you want to do.This is effectively the approach I described above as the 2nd option. The only downside is that you’ll have to write your node code for version
8.2.1and it will not supporttypescriptat all at the moment