blob: 4123be9cae3f565a671c5cc6a4ad8feceee50b23 [file] [log] [blame]
Matteo Scandolo7d539d32016-05-25 08:53:11 -07001// 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([
29 '../../../xos/core/xoslib/static/js/vendor/ngXosVendor.js',
30 '../../../xos/core/xoslib/static/js/vendor/ngXosHelpers.js',
31 'src/js/**/*.js',
32 'spec/**/*.mock.js',
33 'spec/**/*.test.js',
34 'src/**/*.html'
35 ]),
36
37
38 // list of files to exclude
39 exclude: [
40 ],
41
42
43 // preprocess matching files before serving them to the browser
44 // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
45 preprocessors: {
46 'src/js/**/*.js': ['babel'],
47 'spec/**/*.test.js': ['babel'],
48 'src/**/*.html': ['ng-html2js']
49 },
50
51 ngHtml2JsPreprocessor: {
52 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)
53 moduleName: 'templates' // define the template module name
54 },
55
56 // test results reporter to use
57 // possible values: 'dots', 'progress'
58 // available reporters: https://npmjs.org/browse/keyword/karma-reporter
59 reporters: ['mocha'],
60
61
62 // web server port
63 port: 9876,
64
65
66 // enable / disable colors in the output (reporters and logs)
67 colors: true,
68
69
70 // level of logging
71 // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
72 logLevel: config.LOG_INFO,
73
74
75 // enable / disable watching file and executing tests whenever any file changes
76 autoWatch: true,
77
78
79 // start these browsers
80 // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
81 browsers: ['PhantomJS'],
82
83
84 // Continuous Integration mode
85 // if true, Karma captures browsers, runs the tests and exits
86 singleRun: false
87 });
88};