1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- module.exports = function(config) {
- 'use strict';
- config.set({
-
- autoWatch: true,
-
- basePath: '../',
-
-
- frameworks: [
- "jasmine"
- ],
-
- files: [
-
- 'bower_components/jquery/dist/jquery.js',
- 'bower_components/angular/angular.js',
- 'bower_components/bootstrap-sass-official/assets/javascripts/bootstrap.js',
- 'bower_components/angular-animate/angular-animate.js',
- 'bower_components/angular-sanitize/angular-sanitize.js',
- 'bower_components/angular-touch/angular-touch.js',
- 'bower_components/angular-ui-router/release/angular-ui-router.js',
- 'bower_components/gsap/src/uncompressed/TweenMax.js',
- 'bower_components/ngFx/dist/ngFx.js',
- 'bower_components/mixpanel/mixpanel-jslib-snippet.js',
- 'bower_components/angular-mixpanel/src/angular-mixpanel.js',
- 'bower_components/angular-mocks/angular-mocks.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,
-
-
-
-
-
-
- });
- };
|