UNPKG

@stryker-mutator/core

Version:

The extendable JavaScript mutation testing framework

10 lines 294 B
import { EventEmitter } from 'events'; export class ChildProcessMock extends EventEmitter { constructor(pid) { super(); this.pid = pid; this.stdout = new EventEmitter(); this.stderr = new EventEmitter(); } } //# sourceMappingURL=child-process-mock.js.map