chore(core): log.warning is now log.warn
This commit is contained in:
parent
e60362935c
commit
5c00551bca
14 changed files with 134 additions and 143 deletions
|
@ -867,12 +867,12 @@ describe('Pattern', () => {
|
|||
expect(typeof partContext.store.log).to.equal('object')
|
||||
expect(typeof partContext.store.log.debug).to.equal('function')
|
||||
expect(typeof partContext.store.log.info).to.equal('function')
|
||||
expect(typeof partContext.store.log.warning).to.equal('function')
|
||||
expect(typeof partContext.store.log.warn).to.equal('function')
|
||||
expect(typeof partContext.store.log.error).to.equal('function')
|
||||
expect(typeof partContext.store.logs).to.equal('object')
|
||||
expect(Array.isArray(partContext.store.logs.debug)).to.equal(true)
|
||||
expect(Array.isArray(partContext.store.logs.info)).to.equal(true)
|
||||
expect(Array.isArray(partContext.store.logs.warning)).to.equal(true)
|
||||
expect(Array.isArray(partContext.store.logs.warn)).to.equal(true)
|
||||
expect(Array.isArray(partContext.store.logs.error)).to.equal(true)
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue