Skip to content

Commit

Permalink
ci 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric Halbronn committed May 16, 2024
1 parent f538415 commit aa0b524
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions packages/test-harness/src/launchNeovimAndRunTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,18 +98,18 @@ export async function launchNeovimAndRunTests(extensionTestsPath: string) {
);
console.log("init.lua copying done");

const nvim_process = cp.spawn(cli);
// const nvim_process = cp.spawn(cli, [], {
// // encoding: "utf-8",
// // stdio: "inherit",
// env: {
// ...process.env,
// // "NVIM_NODE_HOST_DEBUG": "1",
// NVIM_NODE_LOG_FILE: `${getCursorlessRepoRoot()}/packages/cursorless-neovim/out/nvim_node.log`,
// NVIM_NODE_LOG_LEVEL: "debug",
// CURSORLESS_MODE: "test",
// },
// });
// const nvim_process = cp.spawn(cli); // this works
const nvim_process = cp.spawn(cli, [], {
// encoding: "utf-8",
// stdio: "inherit",
env: {
...process.env,
// "NVIM_NODE_HOST_DEBUG": "1",
NVIM_NODE_LOG_FILE: `${getCursorlessRepoRoot()}/packages/cursorless-neovim/out/nvim_node.log`,
NVIM_NODE_LOG_LEVEL: "debug",
CURSORLESS_MODE: "test",
},
});
console.log("nvim started done");

// do not wait for nvim to exit to avoid any blocking
Expand Down

0 comments on commit aa0b524

Please sign in to comment.