Skip to content

Commit

Permalink
Remove terminal change icon tests as they required quick pick
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Mar 29, 2024
1 parent f7fb22d commit a00e2b9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
7 changes: 0 additions & 7 deletions test/smoke/src/areas/terminal/terminal-editors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ export function setup() {
await terminal.assertSingleTab({ color }, true);
});

it('should update icon of the tab', async () => {
await terminal.runCommand(TerminalCommandId.CreateNewEditor);
const icon = 'symbol-method';
await terminal.runCommandWithValue(TerminalCommandIdWithValue.ChangeIcon, icon);
await terminal.assertSingleTab({ icon }, true);
});

it('should rename the tab', async () => {
await terminal.runCommand(TerminalCommandId.CreateNewEditor);
const name = 'my terminal name';
Expand Down
16 changes: 0 additions & 16 deletions test/smoke/src/areas/terminal/terminal-tabs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,6 @@ export function setup() {
await terminal.assertTerminalGroups([[{}], [{}]]);
});

it('should update color of the single tab', async () => {
await terminal.createTerminal();
const color = 'Cyan';
await terminal.runCommandWithValue(TerminalCommandIdWithValue.ChangeColor, color);
await terminal.assertSingleTab({ color });
});

it('should update color of the tab in the tabs list', async () => {
await terminal.createTerminal();
await terminal.runCommand(TerminalCommandId.Split);
await terminal.waitForTerminalText(lines => lines.some(line => line.length > 0), undefined, 1);
const color = 'Cyan';
await terminal.runCommandWithValue(TerminalCommandIdWithValue.ChangeColor, color);
await terminal.assertTerminalGroups([[{}, { color }]]);
});

it('should update icon of the single tab', async () => {
await terminal.createTerminal();
const icon = 'symbol-method';
Expand Down

0 comments on commit a00e2b9

Please sign in to comment.