Skip to content

Commit dd5072b

Browse files
committed
fix: reduce comment length in budget proposal tests
1 parent b579be9 commit dd5072b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/govtool-frontend/playwright/tests/11-proposal-budget/proposalBudget.loggedin.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ test.describe("Budget proposal logged in state", () => {
4949
});
5050

5151
test("11I. Should comments on any proposal", async ({}) => {
52-
const comment = faker.lorem.paragraph(2);
52+
const comment = faker.lorem.paragraph(1);
5353
await budgetDiscussionDetailsPage.addComment(comment);
5454
await expect(
5555
budgetDiscussionDetailsPage.currentPage
@@ -59,7 +59,7 @@ test.describe("Budget proposal logged in state", () => {
5959
});
6060

6161
test("11J. Should reply to any comments", async ({}) => {
62-
const randComment = faker.lorem.paragraph(2);
62+
const randComment = faker.lorem.paragraph(1);
6363
const randReply = faker.lorem.words(5);
6464

6565
await budgetDiscussionDetailsPage.addComment(randComment);

0 commit comments

Comments
 (0)