| Conditions | 1 |
| Paths | 1 |
| Total Lines | 24 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | module.exports = function (config) { |
||
|
|
|||
| 2 | config.set({ |
||
| 3 | basePath: '', |
||
| 4 | port: 9877, |
||
| 5 | colors: true, |
||
| 6 | logLevel: 'INFO', |
||
| 7 | autoWatch: false, |
||
| 8 | browsers: ['PhantomJS'], |
||
| 9 | singleRun: true, |
||
| 10 | frameworks: ['jasmine'], |
||
| 11 | reporters: ['mocha'], |
||
| 12 | |||
| 13 | files: [ |
||
| 14 | 'examples/css/fontello.css', |
||
| 15 | 'examples/css/font-awesome.css', |
||
| 16 | 'test/vendor/object-assign-polyfill.js', |
||
| 17 | 'test/vendor/prototype-bind-polyfill.js', |
||
| 18 | 'test/vendor/underscore.js', |
||
| 19 | 'dist/markerfactory.js', |
||
| 20 | 'test/*.spec.js' |
||
| 21 | ] |
||
| 22 | |||
| 23 | }); |
||
| 24 | }; |
||