47face0175
Suppress Vue tips when running Karma See merge request !12379
142 lines
4.5 KiB
JavaScript
142 lines
4.5 KiB
JavaScript
/* eslint-disable jasmine/no-global-setup */
|
|
import $ from 'jquery';
|
|
import _ from 'underscore';
|
|
import 'jasmine-jquery';
|
|
import '~/commons';
|
|
|
|
import Vue from 'vue';
|
|
import VueResource from 'vue-resource';
|
|
|
|
const isHeadlessChrome = /\bHeadlessChrome\//.test(navigator.userAgent);
|
|
Vue.config.devtools = !isHeadlessChrome;
|
|
Vue.config.productionTip = false;
|
|
|
|
Vue.use(VueResource);
|
|
|
|
// enable test fixtures
|
|
jasmine.getFixtures().fixturesPath = '/base/spec/javascripts/fixtures';
|
|
jasmine.getJSONFixtures().fixturesPath = '/base/spec/javascripts/fixtures';
|
|
|
|
// globalize common libraries
|
|
window.$ = window.jQuery = $;
|
|
window._ = _;
|
|
|
|
// stub expected globals
|
|
window.gl = window.gl || {};
|
|
window.gl.TEST_HOST = 'http://test.host';
|
|
window.gon = window.gon || {};
|
|
|
|
let hasUnhandledPromiseRejections = false;
|
|
|
|
window.addEventListener('unhandledrejection', (event) => {
|
|
hasUnhandledPromiseRejections = true;
|
|
console.error('Unhandled promise rejection:');
|
|
console.error(event.reason.stack || event.reason);
|
|
});
|
|
|
|
const checkUnhandledPromiseRejections = (done) => {
|
|
expect(hasUnhandledPromiseRejections).toBe(false);
|
|
done();
|
|
};
|
|
|
|
// HACK: Chrome 59 disconnects if there are too many synchronous tests in a row
|
|
// because it appears to lock up the thread that communicates to Karma's socket
|
|
// This async beforeEach gets called on every spec and releases the JS thread long
|
|
// enough for the socket to continue to communicate.
|
|
// The downside is that it creates a minor performance penalty in the time it takes
|
|
// to run our unit tests.
|
|
beforeEach(done => done());
|
|
|
|
beforeAll(() => {
|
|
const origError = console.error;
|
|
spyOn(console, 'error').and.callFake((message) => {
|
|
if (/^\[Vue warn\]/.test(message)) {
|
|
fail(message);
|
|
} else {
|
|
origError(message);
|
|
}
|
|
});
|
|
});
|
|
|
|
const builtinVueHttpInterceptors = Vue.http.interceptors.slice();
|
|
|
|
beforeEach(() => {
|
|
// restore interceptors so we have no remaining ones from previous tests
|
|
Vue.http.interceptors = builtinVueHttpInterceptors.slice();
|
|
});
|
|
|
|
// render all of our tests
|
|
const testsContext = require.context('.', true, /_spec$/);
|
|
testsContext.keys().forEach(function (path) {
|
|
try {
|
|
testsContext(path);
|
|
} catch (err) {
|
|
console.error('[ERROR] Unable to load spec: ', path);
|
|
describe('Test bundle', function () {
|
|
it(`includes '${path}'`, function () {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
it('has no unhandled Promise rejections', (done) => {
|
|
setTimeout(checkUnhandledPromiseRejections(done), 1000);
|
|
});
|
|
|
|
// if we're generating coverage reports, make sure to include all files so
|
|
// that we can catch files with 0% coverage
|
|
// see: https://github.com/deepsweet/istanbul-instrumenter-loader/issues/15
|
|
if (process.env.BABEL_ENV === 'coverage') {
|
|
// exempt these files from the coverage report
|
|
const troubleMakers = [
|
|
'./blob_edit/blob_bundle.js',
|
|
'./boards/boards_bundle.js',
|
|
'./cycle_analytics/cycle_analytics_bundle.js',
|
|
'./cycle_analytics/components/stage_plan_component.js',
|
|
'./cycle_analytics/components/stage_staging_component.js',
|
|
'./cycle_analytics/components/stage_test_component.js',
|
|
'./commit/pipelines/pipelines_bundle.js',
|
|
'./diff_notes/diff_notes_bundle.js',
|
|
'./diff_notes/components/jump_to_discussion.js',
|
|
'./diff_notes/components/resolve_count.js',
|
|
'./dispatcher.js',
|
|
'./environments/environments_bundle.js',
|
|
'./filtered_search/filtered_search_bundle.js',
|
|
'./graphs/graphs_bundle.js',
|
|
'./issuable/time_tracking/time_tracking_bundle.js',
|
|
'./main.js',
|
|
'./merge_conflicts/merge_conflicts_bundle.js',
|
|
'./merge_conflicts/components/inline_conflict_lines.js',
|
|
'./merge_conflicts/components/parallel_conflict_lines.js',
|
|
'./monitoring/monitoring_bundle.js',
|
|
'./network/network_bundle.js',
|
|
'./network/branch_graph.js',
|
|
'./profile/profile_bundle.js',
|
|
'./protected_branches/protected_branches_bundle.js',
|
|
'./snippet/snippet_bundle.js',
|
|
'./terminal/terminal_bundle.js',
|
|
'./users/users_bundle.js',
|
|
'./issue_show/index.js',
|
|
];
|
|
|
|
describe('Uncovered files', function () {
|
|
const sourceFiles = require.context('~', true, /\.js$/);
|
|
sourceFiles.keys().forEach(function (path) {
|
|
// ignore if there is a matching spec file
|
|
if (testsContext.keys().indexOf(`${path.replace(/\.js$/, '')}_spec`) > -1) {
|
|
return;
|
|
}
|
|
|
|
it(`includes '${path}'`, function () {
|
|
try {
|
|
sourceFiles(path);
|
|
} catch (err) {
|
|
if (troubleMakers.indexOf(path) === -1) {
|
|
expect(err).toBeNull();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|