mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
36 lines
1.4 KiB
JavaScript
36 lines
1.4 KiB
JavaScript
|
// deno-fmt-ignore-file
|
||
|
// deno-lint-ignore-file
|
||
|
|
||
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
||
|
// Taken from Node 20.11.1
|
||
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
|
||
|
if (!common.hasIntl) {
|
||
|
common.skip('missing Intl');
|
||
|
}
|
||
|
|
||
|
// Refs: https://github.com/nodejs/node/blob/1af63a90ca3a59ca05b3a12ad7dbea04008db7d9/configure.py#L1694-L1711
|
||
|
if (process.config.variables.icu_path !== 'deps/icu-small') {
|
||
|
// If Node.js is configured to use its built-in ICU, it uses a strict subset
|
||
|
// of ICU formed using `tools/icu/shrink-icu-src.py`, which is present in
|
||
|
// `deps/icu-small`. It is not the same as configuring the build with
|
||
|
// `./configure --with-intl=small-icu`. The latter only uses a subset of the
|
||
|
// locales, i.e., it uses the English locale, `root,en`, by default and other
|
||
|
// locales can also be specified using the `--with-icu-locales` option.
|
||
|
common.skip('not using the icu data file present in deps/icu-small/source/data/in/icudt##l.dat.bz2');
|
||
|
}
|
||
|
|
||
|
const fixtures = require('../common/fixtures');
|
||
|
|
||
|
// This test ensures the correctness of the automated timezone upgrade PRs.
|
||
|
|
||
|
const { strictEqual } = require('assert');
|
||
|
const { readFileSync } = require('fs');
|
||
|
|
||
|
const expectedVersion = readFileSync(fixtures.path('tz-version.txt'), 'utf8').trim();
|
||
|
strictEqual(process.versions.tz, expectedVersion);
|