fix(core): update

This commit is contained in:
2018-11-04 18:44:28 +01:00
parent 76d3926ba4
commit a8bac181a4
5 changed files with 26 additions and 17 deletions

View File

@ -14,7 +14,8 @@ tap.test('should create a valid logDna account', async () => {
tap.test('should create a standard log message', async () => {
testLogMessage = logdna.LogdnaMessage.fromSmartLogPackage({
type: 'log',
timestamp: Date.now(),
type: 'log',
level: 'info',
context: {
company: 'Lossless GmbH',
@ -24,7 +25,7 @@ tap.test('should create a standard log message', async () => {
runtime: 'node',
zone: 'shipzone'
},
message: 'this is an awesome log message :)'
message: 'this is an awesome log message sent by the tapbundle test'
});
});