Skip flaky test

Part of #137808
This commit is contained in:
Daniel Imms 2021-11-24 09:59:22 -08:00
parent f880669743
commit 653e5cdaee

View file

@ -24,7 +24,8 @@ export function setup(opts: ParsedArgs) {
await terminal.assertSingleTab({ color }, true);
});
it('should update icon of the tab', async () => {
// TODO: Flaky https://github.com/microsoft/vscode/issues/137808
it.skip('should update icon of the tab', async () => {
await terminal.runCommand(TerminalCommandId.CreateNewEditor);
const icon = 'symbol-method';
await terminal.runCommandWithValue(TerminalCommandIdWithValue.ChangeIcon, icon);