From 76c123ea806101c3c59885d650409504e08ca2f7 Mon Sep 17 00:00:00 2001 From: Nil Gallego Date: Wed, 11 Dec 2024 11:24:10 +0100 Subject: [PATCH 1/2] swhich off trace --- e2e-tests/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e-tests/playwright.config.ts b/e2e-tests/playwright.config.ts index d60763886f..58e5586308 100644 --- a/e2e-tests/playwright.config.ts +++ b/e2e-tests/playwright.config.ts @@ -27,7 +27,7 @@ export default defineConfig({ baseURL: process.env.BASE_URL, ignoreHTTPSErrors: true, /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ - trace: "retain-on-failure", + trace: "off", screenshot: "only-on-failure", video: { mode: "on", From 6411cf758ee63af46424f561bf7029141d72d651 Mon Sep 17 00:00:00 2001 From: Nil Gallego Date: Wed, 11 Dec 2024 14:56:50 +0100 Subject: [PATCH 2/2] test on github creds --- e2e-tests/playwright/e2e/github-happy-path.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e-tests/playwright/e2e/github-happy-path.spec.ts b/e2e-tests/playwright/e2e/github-happy-path.spec.ts index 808d540b00..76115740a8 100644 --- a/e2e-tests/playwright/e2e/github-happy-path.spec.ts +++ b/e2e-tests/playwright/e2e/github-happy-path.spec.ts @@ -11,7 +11,7 @@ import { TEMPLATES } from "../support/testData/templates"; let page: Page; // TODO: replace skip with serial -test.describe.skip("GitHub Happy path", () => { +test.describe.serial("GitHub Happy path", () => { //TODO: skipping due to RHIDP-4992 let common: Common; let uiHelper: UIhelper;