mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 17:57:53 +00:00

common.hasSmallICU is used in only one test and is a one-liner. Move into the test where it is used to chip away at the `common` monolith. PR-URL: https://github.com/nodejs/node/pull/22937 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
26 lines
733 B
JavaScript
26 lines
733 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const os = require('os');
|
|
|
|
const { hasSmallICU } = process.binding('config');
|
|
if (!(common.hasIntl && hasSmallICU))
|
|
common.skip('missing Intl');
|
|
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
|
|
const expected =
|
|
'could not initialize ICU (check NODE_ICU_DATA or ' +
|
|
`--icu-data-dir parameters)${os.EOL}`;
|
|
|
|
{
|
|
const child = spawnSync(process.execPath, ['--icu-data-dir=/', '-e', '0']);
|
|
assert(child.stderr.toString().includes(expected));
|
|
}
|
|
|
|
{
|
|
const env = Object.assign({}, process.env, { NODE_ICU_DATA: '/' });
|
|
const child = spawnSync(process.execPath, ['-e', '0'], { env });
|
|
assert(child.stderr.toString().includes(expected));
|
|
}
|