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", 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;