From d33e3d2fbcdd15553a529b7fbc0ae303b91a170c Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Thu, 16 Dec 2021 11:36:48 -0800 Subject: [PATCH] Re-enable flaky auto replies tests Need a new playwright trace from a failure to be able to diagnose Part of #139083 --- test/smoke/src/areas/terminal/terminal-input.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/smoke/src/areas/terminal/terminal-input.test.ts b/test/smoke/src/areas/terminal/terminal-input.test.ts index 07bfbb6e026..eaada710878 100644 --- a/test/smoke/src/areas/terminal/terminal-input.test.ts +++ b/test/smoke/src/areas/terminal/terminal-input.test.ts @@ -4,7 +4,6 @@ *--------------------------------------------------------------------------------------------*/ import { Application, Terminal, SettingsEditor } from '../../../../automation'; -import { itSkipOnFail } from '../../utils'; export function setup() { describe('Terminal Input', () => { @@ -25,13 +24,13 @@ export function setup() { await terminal.runCommandInTerminal(`"\r${text}`, true); } - itSkipOnFail('should automatically reply to default "Terminate batch job (Y/N)"', async () => { + it('should automatically reply to default "Terminate batch job (Y/N)"', async () => { await terminal.createTerminal(); await writeTextForAutoReply('Terminate batch job (Y/N)?'); await terminal.waitForTerminalText(buffer => buffer.some(line => line.includes('Terminate batch job (Y/N)?Y'))); }); - itSkipOnFail('should automatically reply to a custom entry', async () => { + it('should automatically reply to a custom entry', async () => { await settingsEditor.addUserSetting('terminal.integrated.autoReplies', '{ "foo": "bar" }'); await terminal.createTerminal(); await writeTextForAutoReply('foo');