Skip flaky test

Part of #137795
This commit is contained in:
Daniel Imms 2021-11-24 10:04:38 -08:00
parent 653e5cdaee
commit eeae10e56c

View file

@ -60,7 +60,8 @@ export function setup(opts: ParsedArgs) {
await terminal.assertSingleTab({ name });
});
it('should reset the tab name to the default value when no name is provided', async () => {
// Flaky: https://github.com/microsoft/vscode/issues/137795
it.skip('should reset the tab name to the default value when no name is provided', async () => {
await terminal.runCommand(TerminalCommandId.Show);
const defaultName = await terminal.getSingleTabName();
const name = 'my terminal name';