chore(deps): update jest monorepo (major) (#3734)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: William Durand <will+git@drnd.me>
This commit is contained in:
renovate[bot] 2021-06-01 11:34:12 +02:00 коммит произвёл GitHub
Родитель e4bab6a425
Коммит dc03471799
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 1767 добавлений и 2000 удалений

3743
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -88,19 +88,19 @@
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-gettext-extractor": "4.1.3",
"babel-jest": "26.6.3",
"babel-jest": "27.0.2",
"babel-loader": "8.2.2",
"codecov": "3.8.2",
"comment-json": "4.1.0",
"doctoc": "2.0.0",
"eslint-config-amo": "4.6.0",
"eslint-config-amo": "4.7.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-promise": "5.1.0",
"gfm.css": "1.1.2",
"gh-pages": "3.2.0",
"gunzip-maybe": "1.4.2",
"hashish": "0.0.4",
"jest": "26.6.3",
"jest": "27.0.3",
"jest-raw-loader": "1.0.1",
"lodash.clonedeep": "4.5.0",
"lodash.ismatchwith": "4.4.0",

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

@ -23,7 +23,7 @@ import {
} from './formats';
import schemas from './imported';
const jsonSchemaDraft06 = require('ajv/lib/refs/json-schema-draft-06.json');
const jsonSchemaDraft06 = require('ajv/lib/refs/json-schema-draft-06');
function filterErrors(errors) {
if (errors) {

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

@ -7,11 +7,13 @@ jest.unmock('cli');
let cli;
describe('Basic CLI tests', function cliCallback() {
let fakeFail;
beforeEach(() => {
// Override yargs fail func so we can introspect the right errors
// are happening when we hand it bogus input.
this.fakeFail = sinon.stub();
cli = getConfig().exitProcess(false).fail(this.fakeFail);
fakeFail = sinon.stub();
cli = getConfig().exitProcess(false).fail(fakeFail);
});
it('should default logLevel type to "fatal"', () => {
@ -77,14 +79,14 @@ describe('Basic CLI tests', function cliCallback() {
it('should show error on missing xpi', () => {
cli.parse([]);
expect(
this.fakeFail.calledWithMatch('Not enough non-option arguments')
fakeFail.calledWithMatch('Not enough non-option arguments')
).toBeTruthy();
});
it('should show error if incorrect output', () => {
cli.parse(['-o', 'false', 'whatevs']);
expect(
this.fakeFail.calledWithMatch(
fakeFail.calledWithMatch(
'Invalid values:\n Argument: output, Given: "false"'
)
).toBeTruthy();

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

@ -68,7 +68,7 @@ describe('gettext()', () => {
jest.doMock('utils', () => {
return {
// eslint-disable-next-line global-require
i18n: buildI18nObject(require('../fixtures/fr.js')),
i18n: buildI18nObject(require('../fixtures/fr')),
};
});
@ -89,7 +89,7 @@ describe('gettext()', () => {
jest.doMock('utils', () => {
return {
// eslint-disable-next-line global-require
i18n: buildI18nObject(require('../fixtures/ja.js')),
i18n: buildI18nObject(require('../fixtures/ja')),
};
});
@ -112,7 +112,7 @@ describe('sprintf()', () => {
jest.doMock('utils', () => {
return {
// eslint-disable-next-line global-require
i18n: buildI18nObject(require('../fixtures/de.js')),
i18n: buildI18nObject(require('../fixtures/de')),
};
});