1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | class fakeSpinner { constructor(message) { this.message; } info(message) { console.log(message); return this; } warn(message) { console.log(message); return this; } succeed(message) { console.log(message); return this; } fail(message) { console.log(message); return this; } stopAndPersist() { return this; } start() { return this; } stop() { return this; } clear() { return this; } } module.exports = (...args) => new fakeSpinner(...args); |