Files
fauxjira/api/src/database/seeds/development/comment.ts
2019-12-03 15:38:53 +01:00

11 lines
228 B
TypeScript

import faker from 'faker';
import Comment from 'entities/Comment';
const generateComment = (data: Partial<Comment> = {}): Partial<Comment> => ({
body: faker.lorem.paragraph(),
...data,
});
export default generateComment;