diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 15d0ac7ae0..22b19ca050 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -454,7 +454,7 @@ as they are added over time. ===== Features * feat: add `apm.getServiceName()` {pull}1949[#1949] + - This will be used by https://github.com/elastic/ecs-logging-js[ecs-logging packages] + This will be used by https://github.com/elastic/ecs-logging-nodejs[ecs-logging packages] to integrate with APM. * feat: support numeric and boolean labels {pull}1909[#1909] + diff --git a/test/instrumentation/modules/elasticsearch.test.js b/test/instrumentation/modules/elasticsearch.test.js index 2b4c542ebc..282f3ee25c 100644 --- a/test/instrumentation/modules/elasticsearch.test.js +++ b/test/instrumentation/modules/elasticsearch.test.js @@ -30,7 +30,7 @@ test('client.ping with callback', function userLandCode (t) { var client = new elasticsearch.Client({ host: host }) client.ping(function (err) { - t.error(err) + t.error(err, 'no error from client.ping') agent.endTransaction() agent.flush() }) diff --git a/test/sanitize-field-names/express.test.js b/test/sanitize-field-names/express.test.js index ba7b856b0d..4ca4ee6b69 100644 --- a/test/sanitize-field-names/express.test.js +++ b/test/sanitize-field-names/express.test.js @@ -74,7 +74,7 @@ function createMiddleware (type) { test('Running fixtures with express', function (suite) { for (const [, fixture] of fixtures.entries()) { - test(fixture.name, function (t) { + suite.test(fixture.name, function (t) { runTest( t, fixture.expected,