1 | module.exports = function (config) { |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
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 | 'test/vendor/object-assign-polyfill.js', |
||
15 | 'test/vendor/prototype-bind-polyfill.js', |
||
16 | 'test/vendor/jquery.min.js', |
||
17 | 'test/vendor/underscore.js', |
||
18 | 'test/vendor/backbone.js', |
||
19 | 'dist/backgrid.js', |
||
20 | 'test/backgrid/*.js' |
||
21 | ] |
||
22 | |||
23 | }); |
||
24 | }; |
||
25 |