From 9d2b4d01d4732d5113dc36f3a57abd4a0ced129e Mon Sep 17 00:00:00 2001 From: Jon Vanausdeln Date: Fri, 31 Jan 2025 19:19:57 -0800 Subject: [PATCH] e2e Test: Change reference test to use shift+F12 (#6212) Due to #6211 needed to switch to using shift+F12 --- test/e2e/tests/references/references.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/e2e/tests/references/references.test.ts b/test/e2e/tests/references/references.test.ts index 86f04113ca1..43682307525 100644 --- a/test/e2e/tests/references/references.test.ts +++ b/test/e2e/tests/references/references.test.ts @@ -23,7 +23,9 @@ test.describe('References', { }); - test('Python - Verify References Functionality', async function ({ app, python, openFile }) { + test('Python - Verify References Functionality', { + annotation: [{ type: 'issue', description: 'https://github.com/posit-dev/positron/issues/6211' }] + }, async function ({ app, python, openFile }) { const helper = 'helper.py'; await openFile(join('workspaces', 'references_tests', 'python', helper)); @@ -57,7 +59,7 @@ async function openAndCommonValidations(app: Application, helper: string) { await app.workbench.editor.clickOnTerm(helper, 'add', 1, true); await test.step('Open references view', async () => { - await app.code.driver.page.keyboard.press('F12'); + await app.code.driver.page.keyboard.press('Shift+F12'); await app.workbench.references.waitUntilOpen(); });