mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-15 18:04:12 +03:00
d49492f1ef
* switch from uvu to mocha * remove unused import * custom min reporter * use constants
13 lines
272 B
JavaScript
13 lines
272 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;
|