123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- module.exports = function(config) {
- 'use strict';
- config.set({
-
- autoWatch: true,
-
- basePath: '../',
-
- frameworks: ['jasmine'],
-
- files: [
- 'bower_components/angular/angular.js',
- 'bower_components/angular-mocks/angular-mocks.js',
- 'bower_components/angular-animate/angular-animate.js',
- 'bower_components/angular-cookies/angular-cookies.js',
- 'bower_components/angular-resource/angular-resource.js',
- 'bower_components/angular-route/angular-route.js',
- 'bower_components/angular-sanitize/angular-sanitize.js',
- 'bower_components/angular-touch/angular-touch.js',
- 'app/scripts/**/*.js',
- 'test/mock/**/*.js',
- 'test/spec/**/*.js'
- ],
-
- exclude: [],
-
- port: 8080,
-
-
-
-
-
-
-
-
- browsers: [
- 'PhantomJS'
- ],
-
- plugins: [
- 'karma-phantomjs-launcher',
- 'karma-jasmine'
- ],
-
-
- singleRun: false,
- colors: true,
-
-
- logLevel: config.LOG_INFO,
-
-
-
-
-
-
- });
- };
|