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

Upgrade lab #184

Merged
merged 1 commit into from Jun 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/index.js
Expand Up @@ -31,7 +31,7 @@ internals.Client = function (defaults) {

defaults = defaults || {};
Hoek.assert(!defaults.agents || (defaults.agents.https && defaults.agents.http && defaults.agents.httpsAllowUnauthorized),
'defaults.agents must include "http", "https", and "httpsAllowUnauthorized"');
'defaults.agents must include "http", "https", and "httpsAllowUnauthorized"');

this._defaults = Hoek.cloneWithShallow(defaults, internals.shallowOptions);

Expand Down
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -17,8 +17,7 @@
"hoek": "4.x.x"
},
"devDependencies": {
"code": "4.x.x",
"lab": "13.x.x",
"lab": "14.x.x",
"require-reload": "0.2.x"
},
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions test/index.js
Expand Up @@ -8,7 +8,6 @@ const Path = require('path');
const Fs = require('fs');
const Events = require('events');
const Stream = require('stream');
const Code = require('code');
const Hoek = require('hoek');
const Lab = require('lab');
const Reload = require('require-reload');
Expand All @@ -30,7 +29,7 @@ const internals = {
const lab = exports.lab = Lab.script();
const describe = lab.describe;
const it = lab.it;
const expect = Code.expect;
const expect = Lab.expect;


describe('request()', () => {
Expand Down