1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- module.exports = function(config) {
- config.set({
-
- basePath: '',
-
-
- frameworks: ['jasmine', 'jquery-1.8.3'],
- plugins: [
- 'karma-jasmine',
- 'karma-chrome-launcher',
- 'karma-phantomjs-launcher',
- 'karma-jquery'
- ],
-
- files: [
- 'bower/angular/angular.js',
- 'bower/angular-mocks/angular-mocks.js',
- 'bower/angular-animate/angular-animate.js',
- 'src/vAccordion/*.js',
- 'src/vAccordion/directives/*.js',
- 'test/unit/**/*.js'
- ],
-
- exclude: [
- ],
-
-
- preprocessors: {
- },
-
-
-
- reporters: ['progress'],
-
- port: 9876,
-
- colors: true,
-
-
- logLevel: config.LOG_INFO,
-
- autoWatch: true,
-
-
- browsers: ['PhantomJS'],
-
-
- singleRun: false
- });
- };
|