summaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/relative-time-format/default-locale-fr-CA.js
blob: 32f64ee02d76d6c3e5aba2bd3889bfa335b7e06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --harmony-intl-relative-time-format --harmony-locale
// Environment Variables: LC_ALL=fr_CA
assertEquals(
    'fr-CA',
    (new Intl.RelativeTimeFormat()).resolvedOptions().locale);

assertEquals(
    'fr-CA',
    (new Intl.RelativeTimeFormat([], {style: 'short', numeric: 'auto'}))
    .resolvedOptions().locale);