overleaf/services/web/karma.conf.js

66 lines
1.8 KiB
JavaScript
Raw Normal View History

const webpackConfig = require('./webpack.config.test')
module.exports = function(config) {
2018-02-12 11:48:09 -05:00
config.set({
customLaunchers: {
ChromeCustom: {
base: 'ChromeHeadless',
// We must disable the Chrome sandbox when running Chrome inside Docker
// (Chrome's sandbox needs more permissions than Docker allows by
// default)
flags: ['--no-sandbox']
}
},
browsers: ['ChromeCustom'],
files: [
'test/frontend/bootstrap.js',
// Include scripts that are injected into the page outside of webpack
'frontend/js/vendor/libs/angular-1.6.4.min.js',
'frontend/js/vendor/libs/jquery-1.11.1.min.js',
// Allow mocking of angular
'frontend/js/vendor/libs/angular-mocks.js',
// Import all tests (see comment in the file for why this is necessary)
'test/frontend/import_tests.js',
// Include CSS
'public/stylesheets/**/*.css'
],
middleware: ['fake-img'],
preprocessors: {
// Run files through webpack
'test/frontend/import_tests.js': ['webpack']
},
frameworks: ['mocha', 'chai-sinon'],
// Configure webpack in the tests
webpack: webpackConfig,
// Configure the webpack dev server used to serve test files
webpackMiddleware: {
// Disable noisy CLI output
stats: 'errors-only'
},
2018-02-12 11:48:09 -05:00
plugins: [
require('karma-chrome-launcher'),
2018-02-12 11:48:09 -05:00
require('karma-mocha'),
require('karma-chai-sinon'),
require('karma-webpack'),
require('karma-mocha-reporter'),
{ 'middleware:fake-img': ['factory', fakeImgMiddlewareFactory] }
2018-02-12 11:48:09 -05:00
],
2018-02-22 09:04:22 -05:00
reporters: ['mocha']
})
2018-02-12 11:48:09 -05:00
}
/**
* Handle fake images
*/
function fakeImgMiddlewareFactory() {
return function(req, res, next) {
if (req.originalUrl.startsWith('/fake/')) {
return res.end('fake img response')
}
next()
}
}