2025-05-11 00:10:43 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) common.skip('missing crypto');
|
|
|
|
|
|
|
|
// _tls_common is deprecated.
|
|
|
|
|
|
|
|
common.expectWarning('DeprecationWarning',
|
2025-05-23 23:03:02 +01:00
|
|
|
'The _tls_common module is deprecated. Use `node:tls` instead.', 'DEP0192');
|
2025-05-11 00:10:43 +01:00
|
|
|
|
|
|
|
require('_tls_common');
|