Skip to content

Commit

Permalink
Skip terminal editor tests (microsoft#224375)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 authored Jul 31, 2024
1 parent 41652ed commit 5410988
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/smoke/src/areas/terminal/terminal-editors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ export function setup() {
await terminal.assertEditorGroupCount(2);
});

it('should create new terminals in the active editor group via command', async () => {
it.skip('should create new terminals in the active editor group via command', async () => {
await terminal.runCommand(TerminalCommandId.CreateNewEditor);
await terminal.runCommand(TerminalCommandId.CreateNewEditor);
await terminal.assertEditorGroupCount(1);
});

it('should create new terminals in the active editor group via plus button', async () => {
it.skip('should create new terminals in the active editor group via plus button', async () => {
await terminal.runCommand(TerminalCommandId.CreateNewEditor);
await terminal.clickPlusButton();
await terminal.assertEditorGroupCount(1);
});

it('should create a terminal in the editor area by default', async () => {
it.skip('should create a terminal in the editor area by default', async () => {
await app.workbench.settingsEditor.addUserSetting('terminal.integrated.defaultLocation', '"editor"');
// Close the settings editor
await app.workbench.quickaccess.runCommand('workbench.action.closeAllEditors');
Expand Down

0 comments on commit 5410988

Please sign in to comment.