We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66a5e24 commit 2977bc6Copy full SHA for 2977bc6
test/e2e/terminal.test.ts
@@ -49,6 +49,7 @@ test.describe("Integrated Terminal", () => {
49
const command = `mkfifo '${tmpFile}' && cat '${tmpFile}'`
50
const exec = util.promisify(cp.exec)
51
console.log('right after exec')
52
+ const output = exec(command, {encoding: "utf8"})
53
54
// Open terminal and type in value
55
await codeServer.focusTerminal()
@@ -62,8 +63,6 @@ test.describe("Integrated Terminal", () => {
62
63
// and file to be created
64
await page.waitForTimeout(2000)
65
// await page.waitForLoadState("networkidle")
- const output = await exec(command, {encoding: "utf8"})
66
- console.log("what is output ", output)
67
68
const t = await output
69
console.log('what is this thing t', t)
0 commit comments