PR-URL: https://github.com/nodejs/node/pull/55038 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
7 lines
138 B
JavaScript
7 lines
138 B
JavaScript
'use strict';
|
|
|
|
const test = require('node:test');
|
|
test('no source map', () => {});
|
|
if (false) {
|
|
console.log('this does not execute');
|
|
}
|