mirror of
https://github.com/Mibew/simple-icons.git
synced 2025-01-20 00:50:34 +03:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
const {reporters, Runner} = require('mocha');
|
|
|
|
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;
|