From fe2d425c8dd6ae53f629f0c0db74b50f75e63a7b Mon Sep 17 00:00:00 2001 From: SenjeyB Date: Wed, 18 Dec 2024 21:02:40 +0300 Subject: [PATCH] Test fix --- test/commands/test_docs.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/commands/test_docs.js b/test/commands/test_docs.js index 4930f7d..5fc0a2d 100644 --- a/test/commands/test_docs.js +++ b/test/commands/test_docs.js @@ -38,7 +38,11 @@ describe('docs', function() { runSync(['docs']); assert(fs.existsSync(filePath), `Expected eodocs.html to be created, but it's missing`); const content = fs.readFileSync(filePath, 'utf8'); - assert.strictEqual(content, '', `Expected eodocs.html to be empty, but it has content: ${content}`); + assert.strictEqual( + content, + '', + `Expected eodocs.html to be empty, but it has content: ${content}` + ); done(); }); });