mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
980b91a1ef
PR-URL: https://github.com/nodejs/node/pull/55231 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
17 lines
562 B
JavaScript
17 lines
562 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('node:assert');
|
|
const { spawnSync } = require('node:child_process');
|
|
const { test } = require('node:test');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
test('ensures --enable-source-maps does not throw an error', () => {
|
|
const fixture = fixtures.path('test-runner', 'coverage', 'stdin.test.js');
|
|
const args = ['--enable-source-maps', fixture];
|
|
|
|
const result = spawnSync(process.execPath, args);
|
|
|
|
assert.strictEqual(result.stderr.toString(), '');
|
|
assert.strictEqual(result.status, 0);
|
|
});
|