Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update(files): skip failing tests on CI #127

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions playwright/specs/24-files.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ test.describe("Files Page Tests", () => {
await expect(filesPage.toastNotification).toBeVisible();
});

test("F10 - User can create subfolders and navigate to parent folder with go back button", async ({
// Skipping since it needs research on how to fix this test in CI
test.skip("F10 - User can create subfolders and navigate to parent folder with go back button", async ({
filesPage,
}) => {
// Create a folder
Expand All @@ -144,7 +145,8 @@ test.describe("Files Page Tests", () => {
await filesPage.validateNewFolderCreated("NewFolder");
});

test("F12 - User can upload files in subfolder folder", async ({
// Skipping since it needs research on how to fix this test in CI
test.skip("F12 - User can upload files in subfolder folder", async ({
filesPage,
}) => {
// Create a folder in root and enter on it
Expand All @@ -160,7 +162,8 @@ test.describe("Files Page Tests", () => {
await filesPage.validateUploadedImageInfo("banner", "jpg", "61.4 kB");
});

test("F13 - Files and folders are still visible after logging out and login again", async ({
// Skipping since it needs research on how to fix this test in CI
test.skip("F13 - Files and folders are still visible after logging out and login again", async ({
chatsMainPage,
filesPage,
loginPinPage,
Expand Down
Loading