Skip to content

Commit

Permalink
enable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
seeM committed Dec 18, 2024
1 parent f693b0f commit d5f84ea
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/e2e/areas/new-project-wizard/new-project-python.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ test.describe('Python - New Project Wizard', { tag: [tags.NEW_PROJECT_WIZARD] },
await app.workbench.quickaccess.runCommand('workbench.action.toggleAuxiliaryBar');
});

// Skip test due to https://github.com/posit-dev/positron/issues/5730. Both have to skipped as they depend o
test.skip('With ipykernel already installed [C609619]', {
test('With ipykernel already installed [C609619]', {
tag: [tags.WIN],
annotation: [{ type: 'issue', description: 'https://github.com/posit-dev/positron/issues/5730' }],
}, async function ({ app, page, python }) {
Expand Down Expand Up @@ -100,7 +99,7 @@ test.describe('Python - New Project Wizard', { tag: [tags.NEW_PROJECT_WIZARD] },
await expect(app.workbench.positronConsole.activeConsole.getByText('>>>')).toBeVisible({ timeout: 90000 });
});

test.skip('With ipykernel not already installed [C609617]', {
test('With ipykernel not already installed [C609617]', {
tag: [tags.WIN],
annotation: [{ type: 'issue', description: 'https://github.com/posit-dev/positron/issues/5730' }],
}, async function ({ app, page }) {
Expand All @@ -116,7 +115,7 @@ test.describe('Python - New Project Wizard', { tag: [tags.NEW_PROJECT_WIZARD] },
await app.workbench.positronInterpreterDropdown.closeInterpreterDropdown();
await app.workbench.positronConsole.typeToConsole('pip uninstall -y ipykernel');
await app.workbench.positronConsole.sendEnterKey();
await app.workbench.positronConsole.waitForConsoleContents('Successfully uninstalled ipykernel')
await app.workbench.positronConsole.waitForConsoleContents('Successfully uninstalled ipykernel');

// Create a new Python project and use the selected python interpreter
await pw.startNewProject(ProjectType.PYTHON_PROJECT);
Expand Down

0 comments on commit d5f84ea

Please sign in to comment.