@stryker-mutator/tap-runner
Version:
A plugin to use the TAP (test anything protocol) test runner in Stryker, the JavaScript mutation testing framework
7 lines • 304 B
JavaScript
import * as tap from 'tap-parser';
// This is a workaround for stubbing tap-parser in the tests.
// When stubbing TypeError: ES Modules cannot be stubbed
export const TapParser = {
Parser: (options, onComplete) => new tap.Parser(options, onComplete),
};
//# sourceMappingURL=tap-parser-factory.js.map