diff --git a/test/smoke/src/areas/terminal/terminal-profiles.test.ts b/test/smoke/src/areas/terminal/terminal-profiles.test.ts index 388c71a53c2..dbbb8d6bb50 100644 --- a/test/smoke/src/areas/terminal/terminal-profiles.test.ts +++ b/test/smoke/src/areas/terminal/terminal-profiles.test.ts @@ -31,13 +31,13 @@ export function setup() { await terminal.assertSingleTab({ name: ANY_PROFILE_NAME }); }); - it('should set the default profile to a contributed one', async () => { + it.skip('should set the default profile to a contributed one', async () => { await terminal.runCommandWithValue(TerminalCommandIdWithValue.SelectDefaultProfile, CONTRIBUTED_PROFILE_NAME); await terminal.createTerminal(); await terminal.assertSingleTab({ name: CONTRIBUTED_PROFILE_NAME }); }); - it('should use the default contributed profile on panel open and for splitting', async () => { + it.skip('should use the default contributed profile on panel open and for splitting', async () => { await terminal.runCommandWithValue(TerminalCommandIdWithValue.SelectDefaultProfile, CONTRIBUTED_PROFILE_NAME); await terminal.runCommand(TerminalCommandId.Show); await terminal.runCommand(TerminalCommandId.Split); @@ -62,7 +62,7 @@ export function setup() { await terminal.assertSingleTab({ name: ANY_PROFILE_NAME }); }); - it('createWithProfile command should create a terminal with a contributed profile', async () => { + it.skip('createWithProfile command should create a terminal with a contributed profile', async () => { await terminal.runCommandWithValue(TerminalCommandIdWithValue.NewWithProfile, CONTRIBUTED_PROFILE_NAME); await terminal.assertSingleTab({ name: CONTRIBUTED_PROFILE_NAME }); });