From 1313046c9285294761c131c4ffe34f4e80c7194f Mon Sep 17 00:00:00 2001 From: Darin Spivey Date: Thu, 16 Sep 2021 15:52:19 -0400 Subject: [PATCH] chore(deps): eslint-config-logdna@5.1.0 --- package.json | 2 +- test/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 02510c9..0a29cff 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ }, "devDependencies": { "eslint": "^7.32.0", - "eslint-config-logdna": "^4.0.2", + "eslint-config-logdna": "^5.1.0", "nock": "^13.0.4", "semantic-release": "^17.4.7", "semantic-release-config-logdna": "^1.3.0", diff --git a/test/index.js b/test/index.js index 97d0a9e..a294e9c 100644 --- a/test/index.js +++ b/test/index.js @@ -38,7 +38,7 @@ test('Call .log() with an object and indexMeta: true', (t) => { nock(options.url) .post('/', (body) => { const payload = body.ls[0] - t.deepEqual(payload, { + t.same(payload, { timestamp , line: message , level: 'INFO' @@ -259,7 +259,7 @@ test('Error will still be processed if there is no stack trace', (t) => { nock(options.url) .post('/', (body) => { const payload = body.ls[0] - t.deepEqual(payload, { + t.same(payload, { timestamp , line: error.message , level: 'ERROR'