We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 19 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /** |
||
| 11 | module.exports = function(config) { |
||
| 12 | config.set({ |
||
| 13 | frameworks: ['jasmine'], |
||
| 14 | files: [ |
||
| 15 | // external libraries |
||
| 16 | '../node_modules/jquery/dist/jquery.js', |
||
| 17 | '../../../lib/OpenLayers/ol3-dlf.js', |
||
| 18 | |||
| 19 | // test specifications |
||
| 20 | 'spec/*.js', |
||
| 21 | |||
| 22 | // files to test |
||
| 23 | '../tx_dlf_altoparser.js', |
||
| 24 | '../tx_dlf_ol3_source.js', |
||
| 25 | '../tx_dlf_utils.js' |
||
| 26 | ], |
||
| 27 | browsers: ['PhantomJS'] |
||
| 28 | }); |
||
| 29 | }; |
||
| 30 |