UNPKG

tstyche

Version:

The Essential Type Testing Tool.

18 lines (15 loc) 286 B
'use strict'; function doNothing() { } const noopChain = new Proxy(doNothing, { apply() { return noopChain; }, get() { return noopChain; }, }); exports.describe = noopChain; exports.expect = noopChain; exports.it = noopChain; exports.test = noopChain;