Remove other icon smoke tests

This commit is contained in:
Daniel Imms 2024-04-01 04:35:44 -07:00
parent af3e721996
commit 511929fc52
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -29,22 +29,6 @@ export function setup() {
await terminal.assertTerminalGroups([[{}], [{}]]);
});
it('should update icon of the single tab', async () => {
await terminal.createTerminal();
const icon = 'symbol-method';
await terminal.runCommandWithValue(TerminalCommandIdWithValue.ChangeIcon, icon);
await terminal.assertSingleTab({ icon });
});
it('should update icon 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 icon = 'symbol-method';
await terminal.runCommandWithValue(TerminalCommandIdWithValue.ChangeIcon, icon);
await terminal.assertTerminalGroups([[{}, { icon }]]);
});
it('should rename the single tab', async () => {
await terminal.createTerminal();
const name = 'my terminal name';