This commit is contained in:
William Durand 2019-05-29 14:53:20 +02:00 коммит произвёл GitHub
Родитель 6546c784ab
Коммит 3bbd5f72e4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 9 удалений

Просмотреть файл

@ -14,7 +14,7 @@ _aliases:
- &node-next
# This is the next NodeJS version we will support.
language: node_js
node_js: '11'
node_js: '12'
before_install: npm install -g yarn
services:
- docker
@ -30,10 +30,6 @@ script: FORCE_COLOR=0 yarn $COMMAND
# See: https://github.com/mozilla/addons-frontend/issues/3034
install: yarn install --pure-lockfile
matrix:
allow_failures:
- node_js: '11'
jobs:
include:
# Test the build process.

Просмотреть файл

@ -100,9 +100,9 @@ describe(__filename, () => {
it('localises the user count', () => {
const root = render({ lang: 'fr' });
// `\xa0` is a non-breaking space.
// See: https://github.com/airbnb/enzyme/issues/1349
expect(root.find('.SearchResult-users-text')).toIncludeText('5\xa0253');
// `\u202F` is a narrow non-breaking space, see:
// https://www.fileformat.info/info/unicode/char/202f/index.htm
expect(root.find('.SearchResult-users-text')).toIncludeText('5\u202F253');
});
it('renders the user count as singular', () => {

Просмотреть файл

@ -490,7 +490,10 @@ describe(__filename, () => {
const i18n = utils.makeI18n({}, 'fr', FakeJed, { _Intl: {} });
const toLocaleStringSpy = sinon.spy(Number.prototype, 'toLocaleString');
const number = 12345;
expect(i18n.formatNumber(number)).toEqual('12 345');
// `\u202F` is a narrow non-breaking space, see:
// https://www.fileformat.info/info/unicode/char/202f/index.htm
expect(i18n.formatNumber(number)).toEqual('12\u202F345');
sinon.assert.calledWith(toLocaleStringSpy, 'fr');
sinon.assert.notCalled(numberFormatSpy);
});