123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- module.exports = function(config) {
- var configuration = {
-
- basePath: '',
-
- plugins: ['karma-chrome-launcher', 'karma-jasmine'],
-
-
- frameworks: ['jasmine'],
-
- files: [
- '../docs/js/jquery-2.1.3.min.js',
- 'http://knockoutjs.com/downloads/knockout-3.4.0.debug.js',
- '../dist/js/bootstrap-multiselect.js',
- 'spec/*.js'
- ],
-
- exclude: [
- ],
-
-
- preprocessors: {
- },
-
-
-
- reporters: ['progress'],
-
- port: 9876,
-
- colors: true,
-
-
- logLevel: config.LOG_INFO,
-
- autoWatch: true,
-
-
- browsers: ['Chrome', 'ChromeCanary', 'Firefox', 'Opera', 'IE'],
-
- customLaunchers: {
- Chrome_travis_ci: {
- base: 'Chrome',
- flags: ['--no-sandbox']
- }
- },
-
-
- singleRun: false,
-
-
- concurrency: Infinity
- };
- if (process.env.TRAVIS) {
- configuration.browsers = ['Chrome_travis_ci'];
- }
- config.set(configuration);
- }
|