Files
2026-07-13 12:38:36 +08:00

16 lines
369 B
JavaScript

// Mock for ora - ora@9+ is ESM-only and breaks Jest in CommonJS mode
const spinner = {};
spinner.start =
spinner.stop =
spinner.succeed =
spinner.fail =
spinner.warn =
spinner.info =
spinner.clear =
spinner.render =
() => spinner;
module.exports = () => spinner;
module.exports.default = module.exports;
module.exports.promise = (action) => action;