refactor: Rename fixtures as factories to differentiate dynamic data
This commit is contained in:
16
packages/backend/test/factories/user.ts
Normal file
16
packages/backend/test/factories/user.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import createRole from './role';
|
||||
import { faker } from '@faker-js/faker';
|
||||
import User from '../../src/models/user';
|
||||
|
||||
const createUser = async (params: Partial<User> = {}) => {
|
||||
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;
|
||||
};
|
||||
|
||||
export default createUser;
|
Reference in New Issue
Block a user