forked from vikunja/frontend
Dominik Pschenitschni
4908469d49
Also align repo closer to `create-vue` template and improve cypress integration
21 lines
380 B
TypeScript
21 lines
380 B
TypeScript
import {faker} from '@faker-js/faker'
|
|
|
|
import {Factory} from '../support/factory'
|
|
|
|
export class TaskCommentFactory extends Factory {
|
|
static table = 'task_comments'
|
|
|
|
static factory() {
|
|
const now = new Date()
|
|
|
|
return {
|
|
id: '{increment}',
|
|
comment: faker.lorem.text(3),
|
|
author_id: 1,
|
|
task_id: 1,
|
|
created: now.toISOString(),
|
|
updated: now.toISOString()
|
|
}
|
|
}
|
|
}
|