fix(e2e): remove quotes from terminal type command

This commit is contained in:
Joe Previte 2021-04-29 16:22:21 -07:00
parent c568300221
commit 17f4c4c330
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -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)