simple-icons/tests/min-reporter.cjs

13 lines
268 B
JavaScript
Raw Normal View History

2024-03-24 20:38:18 +03:00
const {reporters, Runner} = require('mocha');
2024-03-24 20:38:18 +03:00
const {EVENT_RUN_END} = Runner.constants;
class EvenMoreMin extends reporters.Base {
constructor(runner) {
super(runner);
runner.once(EVENT_RUN_END, () => this.epilogue());
}
}
module.exports = EvenMoreMin;