Fix loadJSONFixtures wrapper in Jest
This commit is contained in:
parent
0c63ad850a
commit
1eb3eca313
1 changed files with 6 additions and 3 deletions
|
@ -3,7 +3,7 @@ import * as jqueryMatchers from 'custom-jquery-matchers';
|
||||||
import Translate from '~/vue_shared/translate';
|
import Translate from '~/vue_shared/translate';
|
||||||
import axios from '~/lib/utils/axios_utils';
|
import axios from '~/lib/utils/axios_utils';
|
||||||
import { initializeTestTimeout } from './helpers/timeout';
|
import { initializeTestTimeout } from './helpers/timeout';
|
||||||
import { getJSONFixture, loadHTMLFixture, setHTMLFixture } from './helpers/fixtures';
|
import { loadHTMLFixture, setHTMLFixture } from './helpers/fixtures';
|
||||||
|
|
||||||
process.on('unhandledRejection', global.promiseRejectionHandler);
|
process.on('unhandledRejection', global.promiseRejectionHandler);
|
||||||
|
|
||||||
|
@ -46,9 +46,12 @@ Object.defineProperty(global.Element.prototype, 'innerText', {
|
||||||
// convenience wrapper for migration from Karma
|
// convenience wrapper for migration from Karma
|
||||||
Object.assign(global, {
|
Object.assign(global, {
|
||||||
loadFixtures: loadHTMLFixture,
|
loadFixtures: loadHTMLFixture,
|
||||||
loadJSONFixtures: getJSONFixture,
|
|
||||||
preloadFixtures() {},
|
|
||||||
setFixtures: setHTMLFixture,
|
setFixtures: setHTMLFixture,
|
||||||
|
|
||||||
|
// The following functions fill the fixtures cache in Karma.
|
||||||
|
// This is not necessary in Jest because we make no Ajax request.
|
||||||
|
loadJSONFixtures() {},
|
||||||
|
preloadFixtures() {},
|
||||||
});
|
});
|
||||||
|
|
||||||
// custom-jquery-matchers was written for an old Jest version, we need to make it compatible
|
// custom-jquery-matchers was written for an old Jest version, we need to make it compatible
|
||||||
|
|
Loading…
Reference in a new issue