Skip to content

Commit

Permalink
fix(tests): fix current tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonVreling committed Nov 14, 2020
1 parent 685efc1 commit d7a1ce1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/scripts/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ exports.generateUser = (options = {}) => {
if (notSet(options.address)) options.address = faker.lorem.paragraph();
if (notSet(options.password)) options.password = faker.random.alphaNumeric(16);
if (notSet(options.mail_confirmed_at)) options.mail_confirmed_at = new Date();
if (notSet(options.primary_email)) options.primary_email = 'personal';

return options;
};
Expand Down

0 comments on commit d7a1ce1

Please sign in to comment.