/* * Copyright (c) 2016 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ const webpack = require("webpack") /* ---------------------------------------------------------------------------- * Definition * ------------------------------------------------------------------------- */ module.exports = karma => { const config = { basePath: "../", frameworks: ["mocha"], /* Include babel polyfill to support older browsers */ files: [ "node_modules/babel-polyfill/dist/polyfill.js", "tests/unit/*.spec.jsx" ], /* Test reporters */ reporters: ["spec", "coverage"], /* Silence calls to console.log */ client: { captureConsole: false }, /* Preprocess test files */ preprocessors: { "tests/unit/*.spec.jsx": ["webpack", "sourcemap"] }, /* Configuration for webpack */ webpack: { devtool: "inline-source-map", plugins: [ /* Inject DOM node creation helper for JSX support */ new webpack.ProvidePlugin({ createElement: "./_lib/create-element.js" }) ], module: { loaders: [ { test: /\.jsx?$/, loader: "babel-loader" } ] } }, /* Suppress messages by webpack */ webpackServer: { noInfo: true }, /* Code coverage */ coverageReporter: { dir: "./coverage", reporters: [ { type: "json" } ] } } /* Setup for continuous integration */ if (process.env.CONTINUOUS_INTEGRATION) { // TODO TBD /* Setup for local development environment */ } else if (process.env.GULP) { delete config.reporters /* Setup for local testing */ } else { config.browsers = ["Chrome"] config.singleRun = true } /* Persist configuration */ karma.set(config) }