UNPKG

@stryker-mutator/core

Version:

The extendable JavaScript mutation testing framework

12 lines 290 B
import logging from 'log4js'; import sinon from 'sinon'; import { logger } from './producers.js'; let log; beforeEach(() => { log = logger(); sinon.stub(logging, 'getLogger').returns(log); }); export function currentLogMock() { return log; } //# sourceMappingURL=log-mock.js.map