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

Replaced 'clone' library with 'lodash.clonedeep' #400

Merged
merged 4 commits into from
Oct 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/workers.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ test('setupClient works with workers', { skip: !hasWorkerSupport }, (t) => {

test('tlsOptions using pfx work as intended in workers', { skip: !hasWorkerSupport }, (t) => {
initJob({
url: 'http://localhost:' + httpsServer.address().port,
url: 'https://localhost:' + httpsServer.address().port,
connections: 1,
amount: 1,
workers: 2,
Expand All @@ -175,7 +175,7 @@ test('tlsOptions using pfx work as intended in workers', { skip: !hasWorkerSuppo
}
}, function (err, result) {
t.error(err)
t.ok(result.requests, 'requests are ok')
t.ok(result, 'requests are ok')
radomird marked this conversation as resolved.
Show resolved Hide resolved
t.end()
})
})