Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump tape from 5.7.5 to 5.8.1 #4091

Merged
merged 7 commits into from
Jul 8, 2024
Prev Previous commit
Next Next commit
more dev testing of hapi TAV test faiulre in CI
  • Loading branch information
trentm committed Jul 8, 2024
commit d3b53a611d36496249bb4ea93ae320c8cac92c2f
7 changes: 5 additions & 2 deletions test/instrumentation/modules/hapi/hapi.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var originalCaptureError = agent.captureError;

function noop() {}

test('extract URL from request', function (t) {
test.only('extract URL from request', function (t) {
resetAgent(2, function (data) {
t.strictEqual(data.transactions.length, 1);
t.strictEqual(data.errors.length, 1);
Expand Down Expand Up @@ -604,7 +604,10 @@ function runServer(server, cb) {
cb(null, server.info.port);
});
} else {
server.start().then(() => cb(null, server.info.port), cb);
server.start().then(() => {
console.log("XXX server.start'ed: server.info=", server.info);
cb(null, server.info.port);
}, cb);
}
}

Expand Down
Loading