mirror of https://git.tuxpa.in/a/code-server.git
fix(e2e): remove quotes from terminal type command
This commit is contained in:
parent
c568300221
commit
17f4c4c330
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue