Make sure js files still follow eslint semicolon rules

This commit is contained in:
Matt Bierner
2025-11-12 13:54:56 -08:00
parent b625e085b7
commit bf04914d59
13 changed files with 17 additions and 15 deletions
+2 -2
View File
@@ -304,7 +304,7 @@ async function loadTests(opts) {
const msg = [];
for (const error of errors) {
console.error(`Error: Test run should not have unexpected errors:\n${error}`);
msg.push(String(error))
msg.push(String(error));
}
assert.ok(false, `Error: Test run should not have unexpected errors:\n${msg.join('\n')}`);
}
@@ -464,7 +464,7 @@ async function runTests(opts) {
await loadTests(opts);
const runner = mocha.run(async () => {
await createCoverageReport(opts)
await createCoverageReport(opts);
ipcRenderer.send('all done');
});