smoke - skip failing terminal test (#139349)

This commit is contained in:
Benjamin Pasero 2021-12-17 07:34:20 +01:00
parent d12df34e31
commit 1a4a2714bf
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65

View file

@ -4,6 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import { Application, Terminal, SettingsEditor } from '../../../../automation';
import { itSkipOnFail } from '../../utils';
export function setup() {
describe('Terminal Input', () => {
@ -30,7 +31,7 @@ export function setup() {
await terminal.waitForTerminalText(buffer => buffer.some(line => line.includes('Terminate batch job (Y/N)?Y')));
});
it('should automatically reply to a custom entry', async () => {
itSkipOnFail('should automatically reply to a custom entry', async () => { // TODO@daniel https://github.com/microsoft/vscode/issues/139349
await settingsEditor.addUserSetting('terminal.integrated.autoReplies', '{ "foo": "bar" }');
await terminal.createTerminal();
await writeTextForAutoReply('foo');