Robert Schäfer f3ac218c73 Silly cypress cannot deal with fs npm module
... a server-side npm package and does not work for the browser.
2019-07-08 23:43:44 +02:00

8 lines
307 B
JavaScript

// NOTE: We cannot use `fs` here to clean up the code. Cypress breaks on any npm
// module that is not browser-compatible. Node's `fs` module is server-side only
export default {
User: require('./User.js'),
InvitationCode: require('./InvitationCode.js'),
EmailAddress: require('./EmailAddress.js'),
}