Skip to content

Commit

Permalink
skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tguntenaar committed Dec 11, 2024
1 parent 812db54 commit 3a1355d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
4 changes: 2 additions & 2 deletions playwright-tests/tests/sunset/blog.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from "@playwright/test";

test.describe("Sunset Blog addon", () => {
test.skip("Sunset Blog addon", () => {
test.use({
baseURL: "http://localhost:8080",
});
Expand Down Expand Up @@ -63,7 +63,7 @@ test.describe("Sunset Blog addon", () => {
});
});

test.describe("Sunset Blog Addon", () => {
test.skip("Sunset Blog Addon", () => {
test.use({
baseURL: "http://localhost:8080",
});
Expand Down
2 changes: 1 addition & 1 deletion playwright-tests/tests/sunset/create.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test.describe("Wallet is connected", () => {
storageState: "playwright-tests/storage-states/wallet-connected.json",
});

test("should be able to submit a solution (funding request) with USDC as currency", async ({
test.skip("should be able to submit a solution (funding request) with USDC as currency", async ({
page,
}) => {
test.setTimeout(120000);
Expand Down
16 changes: 9 additions & 7 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 @@ -90,7 +92,7 @@ test.describe("Wallet is connected", () => {
});
});

test("successful idea reply post should not show the editor", async ({
test.skip("successful idea reply post should not show the editor", async ({
page,
}) => {
await page.goto(
Expand All @@ -103,7 +105,7 @@ test.describe("Wallet is connected", () => {
});
});

test("successful comment post should not show the editor", async ({
test.skip("successful comment post should not show the editor", async ({
page,
}) => {
await page.goto(
Expand All @@ -116,7 +118,7 @@ test.describe("Wallet is connected", () => {
});
});

test("successful edited post should not show the editor", async ({
test.skip("successful edited post should not show the editor", async ({
page,
}) => {
await page.goto(
Expand All @@ -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 3a1355d

Please sign in to comment.