Skip to content
Closed
Changes from all commits
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
test: refactor test-crypto-pbkdf2
* re-order require() and crypto check per test writing guide
* use common.mustNotCall() to confirm callback is not invoked
  • Loading branch information
Trott committed Jun 29, 2017
commit 9245559ae089dd7c3ef42a8f9f02819ce2232e59
5 changes: 3 additions & 2 deletions test/parallel/test-crypto-pbkdf2.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
'use strict';
const common = require('../common');
const assert = require('assert');

if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}

const assert = require('assert');
const crypto = require('crypto');

//
Expand Down Expand Up @@ -98,7 +99,7 @@ assert.doesNotThrow(() => {
});

assert.throws(() => {
crypto.pbkdf2('password', 'salt', 8, 8, common.noop);
crypto.pbkdf2('password', 'salt', 8, 8, common.mustNotCall());
}, /^TypeError: The "digest" argument is required and must not be undefined$/);

assert.throws(() => {
Expand Down