mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
Make sure js files still follow eslint semicolon rules
This commit is contained in:
@@ -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');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user