blob: 5e312faf8695357896a2affb85e75861d83ad0a2 [file] [log] [blame]
Matteo Scandolobe9b13d2016-01-21 11:21:03 -08001// Karma configuration
2// Generated on Tue Oct 06 2015 09:27:10 GMT+0000 (UTC)
3
4/* eslint indent: [2,2], quotes: [2, "single"]*/
5
6/*eslint-disable*/
7var wiredep = require('wiredep');
8var path = require('path');
9
10var bowerComponents = wiredep( {devDependencies: true} )[ 'js' ].map(function( file ){
11 return path.relative(process.cwd(), file);
12});
13
14module.exports = function(config) {
15/*eslint-enable*/
16 config.set({
17
18 // base path that will be used to resolve all patterns (eg. files, exclude)
19 basePath: '',
20
21
22 // frameworks to use
23 // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
24 frameworks: ['jasmine'],
25
26
27 // list of files / patterns to load in the browser
28 files: bowerComponents.concat([
Matteo Scandolo148f22b2016-01-22 13:17:33 -080029 '../../../xos/core/xoslib/static/js/vendor/ngXosVendor.js',
30 '../../../xos/core/xoslib/static/js/vendor/ngXosHelpers.js',
31 '../../../xos/core/xoslib/static/js/xosApi.js',
32 'src/js/main.js',
Matteo Scandolobe9b13d2016-01-21 11:21:03 -080033 'src/js/**/*.js',
34 'spec/**/*.mock.js',
35 'spec/**/*.test.js',
36 'src/**/*.html'
37 ]),
38
39
40 // list of files to exclude
41 exclude: [
42 ],
43
44
45 // preprocess matching files before serving them to the browser
46 // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
47 preprocessors: {
48 'src/js/**/*.js': ['babel'],
49 'spec/**/*.test.js': ['babel'],
50 'src/**/*.html': ['ng-html2js']
51 },
52
53 ngHtml2JsPreprocessor: {
54 stripPrefix: 'src/', //strip the src path from template url (http://stackoverflow.com/questions/22869668/karma-unexpected-request-when-testing-angular-directive-even-with-ng-html2js)
55 moduleName: 'templates' // define the template module name
56 },
57
58 // test results reporter to use
59 // possible values: 'dots', 'progress'
60 // available reporters: https://npmjs.org/browse/keyword/karma-reporter
61 reporters: ['mocha'],
62
63
64 // web server port
65 port: 9876,
66
67
68 // enable / disable colors in the output (reporters and logs)
69 colors: true,
70
71
72 // level of logging
73 // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
74 logLevel: config.LOG_INFO,
75
76
77 // enable / disable watching file and executing tests whenever any file changes
78 autoWatch: true,
79
80
81 // start these browsers
82 // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
83 browsers: ['PhantomJS'],
84
85
86 // Continuous Integration mode
87 // if true, Karma captures browsers, runs the tests and exits
88 singleRun: false
89 });
90};