From 17f4c4c330e3e72548d7d448d88e812146570bd9 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 29 Apr 2021 16:22:21 -0700 Subject: [PATCH] fix(e2e): remove quotes from terminal type command --- test/e2e/terminal.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/terminal.test.ts b/test/e2e/terminal.test.ts index c4bb45b11..f92419c69 100644 --- a/test/e2e/terminal.test.ts +++ b/test/e2e/terminal.test.ts @@ -50,7 +50,7 @@ test.describe("Integrated Terminal", () => { await codeServer.focusTerminal() await page.waitForLoadState("load") - await page.keyboard.type(`echo '${testString}' > '${tmpFile}'`) + await page.keyboard.type(`echo ${testString} > ${tmpFile}`) await page.keyboard.press("Enter") // It may take a second to process await page.waitForTimeout(1000)