Skip to content

Commit

Permalink
Update launchNeovimAndRunTests.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
saidelike authored May 17, 2024
1 parent cd670ef commit c89b99b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/test-harness/src/launchNeovimAndRunTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ export async function launchNeovimAndRunTests(extensionTestsPath: string) {
);
console.log("init.vim copying done");

readdirSync("~/.config/nvim/").forEach((file) => {
readdirSync("/home/runner/.config/nvim/").forEach((file) => {
console.log(file);
});
console.log("listing ~/.config/nvim/ dir done");

readdirSync("~/.config/nvim/lua/").forEach((file) => {
readdirSync("/home/runner/.config/nvim/lua/").forEach((file) => {
console.log(file);
});
console.log("listing ~/.config/nvim/lua/ dir done");
Expand Down

0 comments on commit c89b99b

Please sign in to comment.