Files
seasonedShows/tests/helpers/createUser.js

12 lines
313 B
JavaScript

const User = require("../../src/user/user");
const UserSecurity = require("../../src/user/userSecurity");
function createUser(username, password) {
const userSecurity = new UserSecurity();
const user = new User(username);
return userSecurity.createNewUser(user, password);
}
module.exports = createUser;