1 // Karma configuration file
3 // For all available config options and default values, see:
4 // https://github.com/karma-runner/karma/blob/stable/lib/config.js#L54
7 // base path, that will be used to resolve files and exclude
10 // list of files / patterns to load in the browser
12 'components/es5-shim/es5-shim.js',
13 'components/es5-shim/es5-sham.js',
21 // loaded without require
22 'components/jquery/jquery.js',
23 'components/jasmine-jquery/lib/jasmine-jquery.js',
24 'components/jasmine-flight/lib/jasmine-flight.js',
26 // loaded with require
27 {pattern: 'components/flight/**/*.js', included: false},
28 {pattern: 'components/mustache/**/*.js', included: false},
29 {pattern: 'app/**/*.js', included: false},
30 {pattern: 'test/fixtures/**/*.html', included: false},
31 {pattern: 'test/spec/**/*.js', included: false},
36 // list of files to exclude
41 // use dots reporter, as travis terminal does not support escaping sequences
46 // enable / disable watching file and executing tests whenever any file changes
47 // CLI --auto-watch --no-auto-watch
50 // start these browsers
56 // auto run tests on start (when browsers are captured) and exit
57 // CLI --single-run --no-single-run