83 lines
2.2 KiB
JavaScript
83 lines
2.2 KiB
JavaScript
import Vue from 'vue';
|
|
import 'jquery';
|
|
|
|
import * as jqueryMatchers from 'custom-jquery-matchers';
|
|
import { config as testUtilsConfig } from '@vue/test-utils';
|
|
import Translate from '~/vue_shared/translate';
|
|
import { initializeTestTimeout } from './helpers/timeout';
|
|
import { getJSONFixture, loadHTMLFixture, setHTMLFixture } from './helpers/fixtures';
|
|
import { setupManualMocks } from './mocks/mocks_helper';
|
|
import customMatchers from './matchers';
|
|
|
|
import './helpers/dom_shims';
|
|
import './helpers/jquery';
|
|
import '~/commons/bootstrap';
|
|
|
|
process.on('unhandledRejection', global.promiseRejectionHandler);
|
|
|
|
setupManualMocks();
|
|
|
|
afterEach(() =>
|
|
// give Promises a bit more time so they fail the right test
|
|
new Promise(setImmediate).then(() => {
|
|
// wait for pending setTimeout()s
|
|
jest.runOnlyPendingTimers();
|
|
}),
|
|
);
|
|
|
|
initializeTestTimeout(process.env.CI ? 6000 : 500);
|
|
|
|
Vue.config.devtools = false;
|
|
Vue.config.productionTip = false;
|
|
|
|
Vue.use(Translate);
|
|
|
|
// convenience wrapper for migration from Karma
|
|
Object.assign(global, {
|
|
getJSONFixture,
|
|
loadFixtures: loadHTMLFixture,
|
|
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
|
|
Object.entries(jqueryMatchers).forEach(([matcherName, matcherFactory]) => {
|
|
// Don't override existing Jest matcher
|
|
if (matcherName === 'toHaveLength') {
|
|
return;
|
|
}
|
|
|
|
expect.extend({
|
|
[matcherName]: matcherFactory().compare,
|
|
});
|
|
});
|
|
|
|
expect.extend(customMatchers);
|
|
|
|
// Tech debt issue TBD
|
|
testUtilsConfig.logModifiedComponents = false;
|
|
|
|
Object.assign(global, {
|
|
requestIdleCallback(cb) {
|
|
const start = Date.now();
|
|
return setTimeout(() => {
|
|
cb({
|
|
didTimeout: false,
|
|
timeRemaining: () => Math.max(0, 50 - (Date.now() - start)),
|
|
});
|
|
});
|
|
},
|
|
cancelIdleCallback(id) {
|
|
clearTimeout(id);
|
|
},
|
|
});
|
|
|
|
// make sure that each test actually tests something
|
|
// see https://jestjs.io/docs/en/expect#expecthasassertions
|
|
beforeEach(() => {
|
|
expect.hasAssertions();
|
|
});
|