2019-02-20 15:26:44 -05:00
|
|
|
import Vue from 'vue';
|
2019-04-01 14:55:57 -04:00
|
|
|
import * as jqueryMatchers from 'custom-jquery-matchers';
|
2019-06-21 23:35:51 -04:00
|
|
|
import $ from 'jquery';
|
2019-02-20 15:26:44 -05:00
|
|
|
import Translate from '~/vue_shared/translate';
|
2019-02-20 14:59:44 -05:00
|
|
|
import axios from '~/lib/utils/axios_utils';
|
2019-06-28 08:53:56 -04:00
|
|
|
import { config as testUtilsConfig } from '@vue/test-utils';
|
2019-03-08 09:07:44 -05:00
|
|
|
import { initializeTestTimeout } from './helpers/timeout';
|
2019-05-15 08:18:54 -04:00
|
|
|
import { loadHTMLFixture, setHTMLFixture } from './helpers/fixtures';
|
2019-02-20 14:59:44 -05:00
|
|
|
|
2019-06-21 23:35:51 -04:00
|
|
|
// Expose jQuery so specs using jQuery plugins can be imported nicely.
|
|
|
|
// Here is an issue to explore better alternatives:
|
|
|
|
// https://gitlab.com/gitlab-org/gitlab-ee/issues/12448
|
|
|
|
window.jQuery = $;
|
|
|
|
|
2019-03-25 16:15:25 -04:00
|
|
|
process.on('unhandledRejection', global.promiseRejectionHandler);
|
|
|
|
|
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
|
|
|
|
jest.runAllTimers();
|
|
|
|
}),
|
|
|
|
);
|
2019-03-21 13:05:21 -04:00
|
|
|
|
2019-06-06 12:52:20 -04:00
|
|
|
initializeTestTimeout(process.env.CI ? 5000 : 500);
|
2019-02-20 14:59:44 -05:00
|
|
|
|
|
|
|
// fail tests for unmocked requests
|
|
|
|
beforeEach(done => {
|
|
|
|
axios.defaults.adapter = config => {
|
|
|
|
const error = new Error(`Unexpected unmocked request: ${JSON.stringify(config, null, 2)}`);
|
|
|
|
error.config = config;
|
|
|
|
done.fail(error);
|
|
|
|
return Promise.reject(error);
|
|
|
|
};
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
2019-02-20 15:26: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
|
|
|
|
|
|
|
// workaround for JSDOM not supporting innerText
|
|
|
|
// see https://github.com/jsdom/jsdom/issues/1245
|
|
|
|
Object.defineProperty(global.Element.prototype, 'innerText', {
|
|
|
|
get() {
|
|
|
|
return this.textContent;
|
|
|
|
},
|
|
|
|
configurable: true, // make it so that it doesn't blow chunks on re-running tests with things like --watch
|
|
|
|
});
|
2019-03-27 09:55:40 -04:00
|
|
|
|
|
|
|
// convenience wrapper for migration from Karma
|
|
|
|
Object.assign(global, {
|
|
|
|
loadFixtures: loadHTMLFixture,
|
|
|
|
setFixtures: setHTMLFixture,
|
2019-05-15 08:18:54 -04:00
|
|
|
|
|
|
|
// The following functions fill the fixtures cache in Karma.
|
|
|
|
// This is not necessary in Jest because we make no Ajax request.
|
|
|
|
loadJSONFixtures() {},
|
|
|
|
preloadFixtures() {},
|
2019-03-27 09:55:40 -04:00
|
|
|
});
|
2019-04-01 14:55:57 -04:00
|
|
|
|
2019-06-28 08:53:56 -04:00
|
|
|
Object.assign(global, {
|
|
|
|
MutationObserver() {
|
|
|
|
return {
|
|
|
|
disconnect() {},
|
|
|
|
observe() {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
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]) => {
|
|
|
|
expect.extend({
|
|
|
|
[matcherName]: matcherFactory().compare,
|
|
|
|
});
|
|
|
|
});
|
2019-06-28 08:53:56 -04:00
|
|
|
|
|
|
|
// Tech debt issue TBD
|
|
|
|
testUtilsConfig.logModifiedComponents = false;
|