Skip to content

Commit

Permalink
skip sunset tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Megha-Dev-19 committed Dec 10, 2024
1 parent 3b2772e commit eb6fae4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
10 changes: 6 additions & 4 deletions playwright-tests/tests/sunset/blog.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test.describe("Sunset Blog addon", () => {
test.use({
baseURL: "http://localhost:8080",
});
test("should load blogs in the sidebar for a given handle", async ({
test.skip("should load blogs in the sidebar for a given handle", async ({
page,
}) => {
await page.goto(
Expand All @@ -18,7 +18,7 @@ test.describe("Sunset Blog addon", () => {
expect(sidebarBlogSelectors.length).toBeGreaterThanOrEqual(1);
});

test("should prepopulate the form when a blog is selected from the left", async ({
test.skip("should prepopulate the form when a blog is selected from the left", async ({
page,
}) => {
test.setTimeout(60000);
Expand Down Expand Up @@ -67,7 +67,9 @@ test.describe("Sunset Blog Addon", () => {
test.use({
baseURL: "http://localhost:8080",
});
test("should have an empty form if select new blog", async ({ page }) => {
test.skip("should have an empty form if select new blog", async ({
page,
}) => {
await page.goto(
"/devhub.near/widget/devhub.entity.addon.blog.Configurator"
);
Expand Down Expand Up @@ -105,7 +107,7 @@ test.describe("Sunset Blog Addon", () => {
}
});

test("should load a blog page and its blogs for a given community handle", async ({
test.skip("should load a blog page and its blogs for a given community handle", async ({
page,
}) => {
await page.goto(
Expand Down
10 changes: 6 additions & 4 deletions playwright-tests/tests/sunset/feed.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { expect, test } from "@playwright/test";
import { pauseIfVideoRecording } from "../../testUtils.js";

test("should show post history for posts in the feed", async ({ page }) => {
test.skip("should show post history for posts in the feed", async ({
page,
}) => {
await page.goto("/devhub.near/widget/app?page=feed");

const firstPostHistoryButtonSelector = 'a.card-link[title="Post History"]';
Expand All @@ -22,7 +24,7 @@ test("should show post history for posts in the feed", async ({ page }) => {
await page.waitForSelector(desiredChildSelector, { state: "visible" });
});

test("should hide posts with devhub-test tag", async ({ page }) => {
test.skip("should hide posts with devhub-test tag", async ({ page }) => {
// go to feeds page
await page.goto("/devhub.near/widget/app?page=feed");

Expand Down Expand Up @@ -51,7 +53,7 @@ test.describe("Wallet is connected", () => {
storageState: "playwright-tests/storage-states/wallet-connected.json",
});

test("should hide posts editor when hit cancel", async ({ page }) => {
test.skip("should hide posts editor when hit cancel", async ({ page }) => {
// go to feed with logged in user account
await page.goto("/devhub.near/widget/app?page=feed&author=efiz.near");

Expand Down Expand Up @@ -128,7 +130,7 @@ test.describe("Wallet is connected", () => {
state: "hidden",
});
});
test("should reply to a post in the feed with a comment", async ({
test.skip("should reply to a post in the feed with a comment", async ({
page,
}) => {
test.setTimeout(1200000);
Expand Down
4 changes: 3 additions & 1 deletion playwright-tests/tests/sunset/search.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { test } from "@playwright/test";

test("should show post history for posts in the feed", async ({ page }) => {
test.skip("should show post history for posts in the feed", async ({
page,
}) => {
await page.goto("/devhub.near/widget/app?page=feed");

// Fill the search by content by to
Expand Down

0 comments on commit eb6fae4

Please sign in to comment.