1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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/dist/js/bootstrap.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',
- 'bower_components/firebase/firebase.js',
- 'bower_components/angularfire/dist/angularfire.js',
- 'bower_components/spin.js/spin.js',
- 'bower_components/ladda/dist/ladda.min.js',
- 'bower_components/angular-ladda/dist/angular-ladda.min.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,
-
-
-
-
-
-
- });
- };
|