6db0559b81
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1408 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
18 lines
401 B
JavaScript
18 lines
401 B
JavaScript
import faker from '@faker-js/faker'
|
|
import {Factory} from '../support/factory'
|
|
import {formatISO} from 'date-fns'
|
|
|
|
export class TeamFactory extends Factory {
|
|
static table = 'teams'
|
|
|
|
static factory() {
|
|
const now = new Date()
|
|
|
|
return {
|
|
name: faker.lorem.words(3),
|
|
created_by_id: 1,
|
|
created: formatISO(now),
|
|
updated: formatISO(now)
|
|
}
|
|
}
|
|
}
|