Skip to content

Commit 9985b8a

Browse files
committed
Unbreak Mocha under Node.js 22
1 parent 1abcae6 commit 9985b8a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.mocharc.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict';
22

33
module.exports = {
4-
delay: true,
54
enableSourceMaps: true,
65
reporter: 'dot',
76
spec: 'tests/{**,}/*.test.js',

tests/conformance.test.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,10 @@ const specialEncodings = {
221221
}
222222
}
223223
});
224-
225-
run(); // This is a Mocha global.
226-
})();
224+
})().catch(err => {
225+
console.error(err);
226+
process.exit(1);
227+
});
227228

228229
// -- Helpers ------------------------------------------------------------------
229230
function createTest(testRoot, test) {

0 commit comments

Comments
 (0)