node/test/parallel/test-crypto-domain.js
davidmarkclements 26f0aec9a1
test: assert.equal -> assert.strictEqual
changes assert.equal to assert.strictEqual to ensure specificity

PR-URL: https://github.com/nodejs/node/pull/10067
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2016-12-05 00:51:37 +01:00

31 lines
583 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var domain = require('domain');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var crypto = require('crypto');
function test(fn) {
var ex = new Error('BAM');
var d = domain.create();
d.on('error', common.mustCall(function(err) {
assert.strictEqual(err, ex);
}));
var cb = common.mustCall(function() {
throw ex;
});
d.run(cb);
}
test(function(cb) {
crypto.pbkdf2('password', 'salt', 1, 8, cb);
});
test(function(cb) {
crypto.randomBytes(32, cb);
});