Skip to content

Commit

Permalink
test: 랜덤하게 열거형을 처리하면서 테스트가 깨지는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
Coalery committed Dec 11, 2023
1 parent 36015ae commit 96cc957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__test__/fixtures/domain/group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function generateGroup(params?: Partial<GroupConstructorParams>): Group {
return new Group({
id: faker.string.uuid(),
category: faker.helpers.enumValue(GroupCategory),
state: faker.helpers.enumValue(GroupState),
state: GroupState.PROGRESS,
title: faker.lorem.word(),
authorUserId: faker.string.uuid(),
adminUserId: faker.string.uuid(),
Expand Down

0 comments on commit 96cc957

Please sign in to comment.