Skip to content

Commit 2977bc6

Browse files
committed
wip: 2
1 parent 66a5e24 commit 2977bc6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/e2e/terminal.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ test.describe("Integrated Terminal", () => {
4949
const command = `mkfifo '${tmpFile}' && cat '${tmpFile}'`
5050
const exec = util.promisify(cp.exec)
5151
console.log('right after exec')
52+
const output = exec(command, {encoding: "utf8"})
5253

5354
// Open terminal and type in value
5455
await codeServer.focusTerminal()
@@ -62,8 +63,6 @@ test.describe("Integrated Terminal", () => {
6263
// and file to be created
6364
await page.waitForTimeout(2000)
6465
// await page.waitForLoadState("networkidle")
65-
const output = await exec(command, {encoding: "utf8"})
66-
console.log("what is output ", output)
6766

6867
const t = await output
6968
console.log('what is this thing t', t)

0 commit comments

Comments
 (0)