Skip to content

Commit

Permalink
e2e-test: skip Jupyter - New Project Wizard (#5761)
Browse files Browse the repository at this point in the history
Known issue (added as annotation), so skipping test to unblock pipeline.
  • Loading branch information
midleman authored Dec 16, 2024
1 parent ab68d97 commit 5e63103
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@ test.describe('R - New Project Wizard', { tag: [tags.NEW_PROJECT_WIZARD] }, () =
test.describe('Jupyter - New Project Wizard', () => {
const defaultProjectName = 'my-jupyter-notebook';

test('Jupyter Project Defaults [C629352]', { tag: [tags.CRITICAL, tags.WIN] }, async function ({ app }) {
test.skip('Jupyter Project Defaults [C629352]', {
tag: [tags.CRITICAL, tags.WIN],
annotation: [{ type: 'issue', description: 'https://github.com/posit-dev/positron/issues/5730' }],
}, async function ({ app }) {
const projSuffix = addRandomNumSuffix('_defaults');
const pw = app.workbench.positronNewProjectWizard;
await pw.startNewProject(ProjectType.JUPYTER_NOTEBOOK);
Expand Down

0 comments on commit 5e63103

Please sign in to comment.