Merge pull request #219982 from microsoft/tyriar/216564

Skip flaky terminal tabs test
This commit is contained in:
Daniel Imms
2024-07-04 09:03:58 -07:00
committed by GitHub
@@ -36,7 +36,8 @@ export function setup() {
await terminal.assertSingleTab({ name });
});
it('should reset the tab name to the default value when no name is provided', async () => {
// TODO: Flaky https://github.com/microsoft/vscode/issues/216564
it.skip('should reset the tab name to the default value when no name is provided', async () => {
await terminal.createTerminal();
const defaultName = await terminal.getSingleTabName();
const name = 'my terminal name';