Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SenjeyB committed Dec 18, 2024
1 parent 175152a commit fe2d425
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/commands/test_docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
});

0 comments on commit fe2d425

Please sign in to comment.