From 3b5232dac2c2a0beeb1c1d007481e5db29f2604d Mon Sep 17 00:00:00 2001 From: Jon Vanausdeln Date: Tue, 15 Oct 2024 15:17:17 -0700 Subject: [PATCH] Re-enable R console input tests (#5032) ### Intent Turn cnosole input test again as #4901 has been fixed in `main` ### Approach Removed `skip`. Also note that these tests will now run as part of the PR jobs as requested by dev. ## QA Notes Tests pass in CI --- test/smoke/src/areas/positron/console/consoleInput.test.ts | 3 +-- 1 file changed, 1 insertion(+), 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 3a9b9ee4c30..6b5a7c88261 100644 --- a/test/smoke/src/areas/positron/console/consoleInput.test.ts +++ b/test/smoke/src/areas/positron/console/consoleInput.test.ts @@ -48,8 +48,7 @@ print(f'Hello {val}!')`; }); }); - //Skipping due to https://github.com/posit-dev/positron/issues/4901 - describe.skip('Console Input - R', () => { + describe('Console Input - R', () => { before(async function () { await PositronRFixtures.SetupFixtures(this.app as Application); await this.app.workbench.positronLayouts.enterLayout('fullSizedPanel');