From 00b8eab725badfcd6358742adb0fa7a2107e910f Mon Sep 17 00:00:00 2001 From: Jon Vanausdeln Date: Fri, 4 Oct 2024 11:17:41 -0700 Subject: [PATCH] Skip R console input test (#4902) Skipping R console input test due to https://github.com/posit-dev/positron/issues/4901 --- test/smoke/src/areas/positron/console/consoleInput.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/smoke/src/areas/positron/console/consoleInput.test.ts b/test/smoke/src/areas/positron/console/consoleInput.test.ts index 1e633e736d7..82329bd80ac 100644 --- a/test/smoke/src/areas/positron/console/consoleInput.test.ts +++ b/test/smoke/src/areas/positron/console/consoleInput.test.ts @@ -8,7 +8,7 @@ import { expect } from '@playwright/test'; import { Application, PositronPythonFixtures, PositronRFixtures } from '../../../../../automation'; import { setupAndStartApp } from '../../../test-runner/test-hooks'; -describe('Console Input #web', () => { +describe('Console Input #web #pr', () => { setupAndStartApp(); describe('Console Input - Python', () => { @@ -48,7 +48,8 @@ print(f'Hello {val}!')`; }); }); - describe('Console Input - R', () => { + //Skipping due to https://github.com/posit-dev/positron/issues/4901 + describe.skip('Console Input - R', () => { before(async function () { await PositronRFixtures.SetupFixtures(this.app as Application); await this.app.workbench.positronLayouts.enterLayout('fullSizedPanel');