summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-clientcertengine-invalid-arg-type.js
blob: b91e0f35c4c3843ce97cab3baccfde4930332236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';
const common = require('../common');

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

const tls = require('tls');

{
  common.expectsError(
    () => { tls.createSecureContext({ clientCertEngine: 0 }); },
    { code: 'ERR_INVALID_ARG_TYPE',
      message: / Received type number$/ });
}