feat: Convert factories files to JS
This commit is contained in:
13
packages/backend/test/factories/user.js
Normal file
13
packages/backend/test/factories/user.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { createRole } from './role';
|
||||
import { faker } from '@faker-js/faker';
|
||||
|
||||
export const createUser = async (params = {}) => {
|
||||
params.roleId = params?.roleId || (await createRole()).id;
|
||||
params.fullName = params?.fullName || faker.person.fullName();
|
||||
params.email = params?.email || faker.internet.email();
|
||||
params.password = params?.password || faker.internet.password();
|
||||
|
||||
const [user] = await global.knex.table('users').insert(params).returning('*');
|
||||
|
||||
return user;
|
||||
};
|
Reference in New Issue
Block a user