Put LoggingManager.initialize back as it was in tests

This commit is contained in:
Christopher Hoskin 2020-08-11 10:52:53 +01:00
parent 20f2e1eb1d
commit ea502a0623

View file

@ -107,21 +107,18 @@ describe('LoggingManager', function () {
describe('in production', function () {
beforeEach(function () {
process.env.NODE_ENV = 'production'
this.logger = this.LoggingManager.initialize(this.loggerName)
})
afterEach(() => delete process.env.NODE_ENV)
it('should default to log level warn', function () {
this.logger = this.LoggingManager.initialize(this.loggerName)
this.Bunyan.createLogger.firstCall.args[0].streams[0].level.should.equal(
'warn'
)
})
describe('logLevelSource file', function () {
beforeEach(function() {
this.logger = this.LoggingManager.initialize(this.loggerName)
})
it('should run checkLogLevel', function () {
this.checkLogLevelStub.should.have.been.calledOnce