Skip to content

Commit

Permalink
skip announcement related tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Megha-Dev-19 committed Dec 10, 2024
1 parent 5a95d4a commit 3b2772e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions playwright-tests/tests/community/announcements.links.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,21 @@ test.describe("Clipboard permissions", () => {
});
};

test("should share clean URL for announcements, using indexer ( no lag )", async ({
test.skip("should share clean URL for announcements, using indexer ( no lag )", async ({
page,
}) => {
await cleanUrlForAnnouncementsTest({ page, lag: 0 });
});

test("should share clean URL for announcements, using fallback ( big lag )", async ({
test.skip("should share clean URL for announcements, using fallback ( big lag )", async ({
page,
}) => {
await cleanUrlForAnnouncementsTest({ page, lag: 1_000_000 });
});

test("should handle direct links to the post widget", async ({ page }) => {
test.skip("should handle direct links to the post widget", async ({
page,
}) => {
const directUrlPath =
"/devhub.near/widget/devhub.components.organism.Feed.Posts.Post?accountId=webassemblymusic.community.devhub.near&blockHeight=115859669";
await page.goto(directUrlPath);
Expand All @@ -117,7 +119,7 @@ test.describe("Clipboard permissions", () => {
);
});

test("announcement should scroll into view and be highlighted", async ({
test.skip("announcement should scroll into view and be highlighted", async ({
page,
}) => {
test.setTimeout(120000);
Expand Down
8 changes: 4 additions & 4 deletions playwright-tests/tests/community/announcements.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test.describe("Don't ask again enabled", () => {
"playwright-tests/storage-states/wallet-connected-with-devhub-access-key.json",
});

test("Post announcement", async ({ page }) => {
test.skip("Post announcement", async ({ page }) => {
test.setTimeout(60000);
await page.goto(
"/devhub.near/widget/app?page=community&handle=webassemblymusic"
Expand Down Expand Up @@ -269,7 +269,7 @@ test.describe("Admin wallet is connected", () => {
);
});

test("comment button is visible", async ({ page }) => {
test.skip("comment button is visible", async ({ page }) => {
await page.goto(
"/devhub.near/widget/app?page=community&handle=webassemblymusic"
);
Expand All @@ -279,7 +279,7 @@ test.describe("Admin wallet is connected", () => {
});
});

test("like button is visible", async ({ page }) => {
test.skip("like button is visible", async ({ page }) => {
await page.goto(
"/devhub.near/widget/app?page=community&handle=webassemblymusic"
);
Expand All @@ -289,7 +289,7 @@ test.describe("Admin wallet is connected", () => {
});
});

test("a post shows in feed", async ({ page }) => {
test.skip("a post shows in feed", async ({ page }) => {
await page.goto(
"/devhub.near/widget/app?page=community&handle=webassemblymusic"
);
Expand Down

0 comments on commit 3b2772e

Please sign in to comment.