I tried to use factory-bot like this:
import factory from 'factory-bot';
factory.define('User', User, {
name: factory.chance('name'),
email: factory.chance('email')
});
But got an error:
TypeError: factory.define is not a function
Please help me :( How do I import and use this as ES6 modules?
I tried to use factory-bot like this:
But got an error:
TypeError: factory.define is not a functionPlease help me :( How do I import and use this as ES6 modules?