Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
petersalomonsen committed Jul 15, 2024
1 parent 92caa81 commit 7ca5c05
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions playwright-tests/tests/proposal/comment.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ test.describe("Don't ask again enabled", () => {
).toContainText("Add your comment here...");
await pauseIfVideoRecording(page);
});
test("should paste a long comment to a proposal, see that the comment appears after submission, and that the comment field is cleared, even after reloading the page", async ({ page }) => {
test("should paste a long comment to a proposal, see that the comment appears after submission, and that the comment field is cleared, even after reloading the page", async ({
page,
}) => {
test.setTimeout(70000);
await page.goto("/devhub.near/widget/app?page=proposal&id=17");
const widgetSrc =
Expand Down Expand Up @@ -245,7 +247,7 @@ test.describe("Don't ask again enabled", () => {
await page.reload();

commentElement = await page.locator("#theorinear121684809");
await expect(commentElement).toBeVisible({timeout: 20000});
await expect(commentElement).toBeVisible({ timeout: 20000 });
await commentElement.scrollIntoViewIfNeeded();
await expect(commentElement).toContainText(
"Typically, funds are disbursed within 10 business days, but the timeline can vary depending on the project's complexity and paperwork. Your DevDAO Moderator will keep you updated."
Expand Down

0 comments on commit 7ca5c05

Please sign in to comment.