Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
wederbn committed Sep 2, 2023
1 parent 79c50b2 commit d78b536
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions components/bpmn-q/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ module.exports = function (config) {
frameworks: ["mocha", "webpack"],

// list of files / patterns to load in the browser
files: [
"test/**/*.spec.js",
"modeler-component/*.js",
],
files: ["test/**/*.spec.js", "modeler-component/*.js"],

// list of files / patterns to exclude
exclude: [],
Expand All @@ -23,13 +20,17 @@ module.exports = function (config) {
// available preprocessors: https://www.npmjs.com/search?q=keywords:karma-preprocessor
preprocessors: {
"test/**/*.spec.js": ["webpack"],
"modeler-component/*.js": ["babel","coverage"],
"modeler-component/*.js": ["babel", "coverage"],
},

reporters: ['coverage'],
reporters: ["coverage"],

plugins: [
'karma-babel-preprocessor', 'karma-chrome-launcher', 'karma-webpack', 'karma-coverage', 'karma-mocha'
"karma-babel-preprocessor",
"karma-chrome-launcher",
"karma-webpack",
"karma-coverage",
"karma-mocha",
],

webpack: webpackConfig,
Expand Down

0 comments on commit d78b536

Please sign in to comment.