Skip to content

Instantly share code, notes, and snippets.

View newcloudtech's full-sized avatar

MyOffice newcloudtech

View GitHub Profile
@newcloudtech
newcloudtech / karma.config.js
Last active June 15, 2021 04:00
Webpack and karma configs
var webpackConfig = require('../webpack.config.js');
module.exports = function () {
autoWatch: true,
frameworks: ['jasmine'],
preprocessors: {
'../app/**/*.js': ['webpack'],
'../app/**/scripts/**/*.js': ['coverage']
},
webpack: {
resolve: webpackConfig.resolve,