Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions test/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,6 @@ Indicates `hasCrypto` and `crypto` with fips.

Indicates if [internationalization] is supported.

### hasSmallICU
* [<boolean>]

Indicates `hasIntl` and `small-icu` are supported.

### hasIPv6
* [<boolean>]

Expand Down
4 changes: 1 addition & 3 deletions test/common/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ const { fixturesDir } = require('./fixtures');
const tmpdir = require('./tmpdir');
const {
bits,
hasIntl,
hasSmallICU
hasIntl
} = process.binding('config');

const noop = () => {};
Expand Down Expand Up @@ -715,7 +714,6 @@ module.exports = {
hasIntl,
hasCrypto,
hasIPv6,
hasSmallICU,
hasMultiLocalhost,
isAIX,
isAlive,
Expand Down
4 changes: 3 additions & 1 deletion test/parallel/test-icu-data-dir.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
'use strict';
const common = require('../common');
const os = require('os');
if (!(common.hasIntl && common.hasSmallICU))

const { hasSmallICU } = process.binding('config');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bonus points: process.config.variables.icu_small

if (!(common.hasIntl && hasSmallICU))
common.skip('missing Intl');

const assert = require('assert');
Expand Down