node/test/message/source_map_eval.js
Geoffrey Booth fc47d58abe
test: remove cjs loader from stack traces
PR-URL: https://github.com/nodejs/node/pull/44197
Backport-PR-URL: https://github.com/nodejs/node/pull/46535
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
2023-03-27 11:19:02 +01:00

10 lines
231 B
JavaScript

// Flags: --enable-source-maps
'use strict';
require('../common');
Error.stackTraceLimit = 3;
const fs = require('fs');
const content = fs.readFileSync(require.resolve('../fixtures/source-map/tabs.js'), 'utf8');
eval(content);