1// Flags: --pending-deprecation 2 3'use strict'; 4const common = require('../common'); 5 6common.expectWarning( 7 'DeprecationWarning', 8 'module.parent is deprecated due to accuracy issues. Please use ' + 9 'require.main to find program entry point instead.', 10 'DEP0144' 11); 12 13module.parent = undefined; 14