tstyche
Version:
Everything You Need for Type Testing.
20 lines (17 loc) • 318 B
JavaScript
;
function noop() {
}
const noopChain = new Proxy(noop, {
apply() {
return noopChain;
},
get() {
return noopChain;
},
});
exports.describe = noopChain;
exports.expect = noopChain;
exports.it = noopChain;
exports.omit = noop;
exports.pick = noop;
exports.test = noopChain;