From 31f03a6d39df49bc4e9868c988ed80bc564ec507 Mon Sep 17 00:00:00 2001 From: Cedric Halbronn Date: Wed, 12 Jun 2024 15:26:39 +0100 Subject: [PATCH] refactor: disable my test --- packages/test-harness/src/launchNeovimAndRunTests.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/test-harness/src/launchNeovimAndRunTests.ts b/packages/test-harness/src/launchNeovimAndRunTests.ts index 9599caefde..4a8e9cd769 100644 --- a/packages/test-harness/src/launchNeovimAndRunTests.ts +++ b/packages/test-harness/src/launchNeovimAndRunTests.ts @@ -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); }