Skip to content

Commit 17f4c4c

Browse files
committed
fix(e2e): remove quotes from terminal type command
1 parent c568300 commit 17f4c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/terminal.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ test.describe("Integrated Terminal", () => {
5050
await codeServer.focusTerminal()
5151

5252
await page.waitForLoadState("load")
53-
await page.keyboard.type(`echo '${testString}' > '${tmpFile}'`)
53+
await page.keyboard.type(`echo ${testString} > ${tmpFile}`)
5454
await page.keyboard.press("Enter")
5555
// It may take a second to process
5656
await page.waitForTimeout(1000)

0 commit comments

Comments
 (0)