12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- module.exports = function(config) {
- config.set({
-
- basePath: '',
-
-
- frameworks: ['mocha', 'chai', 'sinon'],
-
- files: [
- 'dist/debug.js',
- 'test/*spec.js'
- ],
-
- exclude: [
- 'src/node.js'
- ],
-
-
- preprocessors: {
- },
-
-
-
- reporters: ['progress'],
-
- port: 9876,
-
- colors: true,
-
-
- logLevel: config.LOG_INFO,
-
- autoWatch: true,
-
-
- browsers: ['PhantomJS'],
-
-
- singleRun: false,
-
-
- concurrency: Infinity
- })
- }
|