Skip to content

Commit

Permalink
refactor: disable my test
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric Halbronn committed Jun 12, 2024
1 parent 0b4d825 commit 31f03a6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/test-harness/src/launchNeovimAndRunTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,14 @@ export async function launchNeovimAndRunTests() {
let done = false;
let tailTest;
try {
tailTest = new Tail(`${logName}.notexist`, {
// separator: "\n",
tailTest = new Tail(logName, {
fromBeginning: true,
});
} catch (error) {
console.log(error);
console.log(
"A missing log file at nvim startup is typically the sign of an invalid nvim config file. ",
"Warning: A missing log file at nvim startup is typically the result of an invalid nvim config file",
);
console.log(error);
code = 3;
process.exit(code);
}
Expand Down

0 comments on commit 31f03a6

Please sign in to comment.