2021-02-15 16:08:59 -05:00
|
|
|
import { config as testUtilsConfig } from '@vue/test-utils';
|
|
|
|
import * as jqueryMatchers from 'custom-jquery-matchers';
|
2019-02-20 15:26:44 -05:00
|
|
|
import Vue from 'vue';
|
2020-09-21 11:09:44 -04:00
|
|
|
import 'jquery';
|
2021-02-10 10:11:19 -05:00
|
|
|
import { setGlobalDateToFakeDate } from 'helpers/fake_date';
|
2019-12-09 07:07:58 -05:00
|
|
|
import Translate from '~/vue_shared/translate';
|
2021-01-14 19:10:45 -05:00
|
|
|
import { getJSONFixture, loadHTMLFixture, setHTMLFixture } from './__helpers__/fixtures';
|
2021-02-14 13:09:20 -05:00
|
|
|
import { initializeTestTimeout } from './__helpers__/timeout';
|
2019-08-12 15:22:58 -04:00
|
|
|
import customMatchers from './matchers';
|
2021-02-14 13:09:20 -05:00
|
|
|
import { setupManualMocks } from './mocks/mocks_helper';
|
2019-02-20 14:59:44 -05:00
|
|
|
|
2021-01-14 19:10:45 -05:00
|
|
|
import './__helpers__/dom_shims';
|
|
|
|
import './__helpers__/jquery';
|
2020-03-24 17:07:54 -04:00
|
|
|
import '~/commons/bootstrap';
|
2019-06-21 23:35:51 -04:00
|
|
|
|
2021-01-08 04:10:50 -05:00
|
|
|
// This module has some fairly decent visual test coverage in it's own repository.
|
|
|
|
jest.mock('@gitlab/favicon-overlay');
|
|
|
|
|
2019-03-25 16:15:25 -04:00
|
|
|
process.on('unhandledRejection', global.promiseRejectionHandler);
|
|
|
|
|
2019-07-17 13:47:39 -04:00
|
|
|
setupManualMocks();
|
|
|
|
|
2021-02-10 10:11:19 -05:00
|
|
|
// Fake the `Date` for the rest of the jest spec runtime environment.
|
|
|
|
// https://gitlab.com/gitlab-org/gitlab/-/merge_requests/39496#note_503084332
|
|
|
|
setGlobalDateToFakeDate();
|
|
|
|
|
2019-03-25 16:32:48 -04:00
|
|
|
afterEach(() =>
|
|
|
|
// give Promises a bit more time so they fail the right test
|
|
|
|
new Promise(setImmediate).then(() => {
|
|
|
|
// wait for pending setTimeout()s
|
2020-04-03 20:09:37 -04:00
|
|
|
jest.runOnlyPendingTimers();
|
2019-03-25 16:32:48 -04:00
|
|
|
}),
|
|
|
|
);
|
2019-03-21 13:05:21 -04:00
|
|
|
|
2020-12-25 16:10:18 -05:00
|
|
|
initializeTestTimeout(process.env.CI ? 6000 : 500);
|
2019-02-20 14:59:44 -05:00
|
|
|
|
2019-03-28 09:17:52 -04:00
|
|
|
Vue.config.devtools = false;
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
|
2019-02-20 15:26:44 -05:00
|
|
|
Vue.use(Translate);
|
2019-03-28 15:42:32 -04:00
|
|
|
|
2019-03-27 09:55:40 -04:00
|
|
|
// convenience wrapper for migration from Karma
|
|
|
|
Object.assign(global, {
|
2019-09-18 10:02:45 -04:00
|
|
|
getJSONFixture,
|
2019-03-27 09:55:40 -04:00
|
|
|
loadFixtures: loadHTMLFixture,
|
|
|
|
setFixtures: setHTMLFixture,
|
|
|
|
});
|
2019-04-01 14:55:57 -04:00
|
|
|
|
|
|
|
// custom-jquery-matchers was written for an old Jest version, we need to make it compatible
|
|
|
|
Object.entries(jqueryMatchers).forEach(([matcherName, matcherFactory]) => {
|
2019-12-30 07:09:15 -05:00
|
|
|
// Don't override existing Jest matcher
|
|
|
|
if (matcherName === 'toHaveLength') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-01 14:55:57 -04:00
|
|
|
expect.extend({
|
|
|
|
[matcherName]: matcherFactory().compare,
|
|
|
|
});
|
|
|
|
});
|
2019-06-28 08:53:56 -04:00
|
|
|
|
2019-08-12 15:22:58 -04:00
|
|
|
expect.extend(customMatchers);
|
|
|
|
|
2020-12-25 13:10:00 -05:00
|
|
|
testUtilsConfig.deprecationWarningHandler = (method, message) => {
|
|
|
|
const ALLOWED_DEPRECATED_METHODS = [
|
|
|
|
// https://gitlab.com/gitlab-org/gitlab/-/issues/295679
|
|
|
|
'finding components with `find` or `get`',
|
|
|
|
|
|
|
|
// https://gitlab.com/gitlab-org/gitlab/-/issues/295680
|
|
|
|
'finding components with `findAll`',
|
|
|
|
];
|
|
|
|
if (!ALLOWED_DEPRECATED_METHODS.includes(method)) {
|
|
|
|
global.console.error(message);
|
|
|
|
}
|
|
|
|
};
|
2019-07-22 08:01:42 -04:00
|
|
|
|
2019-08-06 08:02:23 -04:00
|
|
|
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);
|
|
|
|
},
|
|
|
|
});
|
2019-08-21 14:20:08 -04:00
|
|
|
|
|
|
|
// make sure that each test actually tests something
|
|
|
|
// see https://jestjs.io/docs/en/expect#expecthasassertions
|
|
|
|
beforeEach(() => {
|
|
|
|
expect.hasAssertions();
|
|
|
|
});
|