poku
Version:
🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.
12 lines (11 loc) • 369 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.skip = void 0;
const node_process_1 = require("process");
const poku_js_1 = require("../../configs/poku.js");
const skip = (message = 'Skipping') => {
if (message)
poku_js_1.GLOBAL.reporter.onSkipFile({ message });
(0, node_process_1.exit)(0);
};
exports.skip = skip;