mirror of https://github.com/nodejs/node.git
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto) common.skip('missing crypto');
|
|
|
|
// _tls_common is deprecated.
|
|
|
|
common.expectWarning('DeprecationWarning',
|
|
'The _tls_common module is deprecated. Use `node:tls` instead.', 'DEP0192');
|
|
|
|
require('_tls_common');
|