Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ndm / opt / ndm / resources / app / node_modules / selection-model / karma.conf.js
Size: Mime:
/*jshint node:true */
module.exports = function(config) {
  'use strict';
  config.set({
    autoWatch: true,
    singleRun: false,
    frameworks: ['jasmine'],
    files: [
      'bower_components/jquery/dist/jquery.js',
      'bower_components/angular/angular.js',
      'bower_components/angular-mocks/angular-mocks.js',
      'src/scripts/*.js',
      'src/scripts/**/*.js',
      'test/spec/**/*.js'
    ],
    browsers: [process.env.TRAVIS ? 'Firefox' : 'Chrome'],
    reporters: [process.env.TRAVIS ? 'dots' : 'progress'],
    plugins: [
      'karma-jasmine',
      'karma-chrome-launcher',
      'karma-firefox-launcher'
    ],
    logLevel: config.LOG_INFO
  });
};