diff --git a/playwright-tests/tests/community.spec.js b/playwright-tests/tests/community.spec.js index 10985af15..fc29c3db9 100644 --- a/playwright-tests/tests/community.spec.js +++ b/playwright-tests/tests/community.spec.js @@ -1,9 +1,7 @@ import { test, expect } from "@playwright/test"; test("should load a community page if handle exists", async ({ page }) => { - await page.goto( - "/devhub.near/widget/app?page=community&handle=devhub-test" - ); + await page.goto("/devhub.near/widget/app?page=community&handle=devhub-test"); // Using the that wraps the tabs to identify a community page loaded const communityTabSelector = `a[href^="/devhub.near/widget/app?page=community&handle=devhub-test&tab="]`;