8.1.1 • Published 3 months ago

@krakenjs/karma-config-grumbler v8.1.1

Weekly downloads
-
License
-
Repository
github
Last release
3 months ago

@krakenjs/karma-config-grumbler

Installation

npm install -D @krakenjs/karma-config-grumbler

Usage

  1. Create a karma.conf.js file at the root of your project.
  2. Add the following contents to your karma.conf.js file:

    import { getKarmaConfig } from "@krakenjs/karma-config-grumbler";
    import { getWebpackConfig } from "@krakenjs/webpack-config-grumbler";
    
    export default (karma) =>
      karma.set(
        getKarmaConfig(karma, {
          basePath: __dirname,
          webpack: getWebpackConfig(),
        })
      );