| 123456789101112131415161718192021222324252627282930313233343536 |
- module.exports = function(config) {
- 'use strict';
- config.set({
- basePath: __dirname + '/public_gen',
- frameworks: ['mocha', 'expect', 'sinon'],
- // list of files / patterns to load in the browser
- files: [
- 'vendor/npm/es5-shim/es5-shim.js',
- 'vendor/npm/es5-shim/es5-sham.js',
- 'vendor/npm/es6-shim/es6-shim.js',
- 'vendor/npm/es6-promise/dist/es6-promise.js',
- 'vendor/npm/systemjs/dist/system.src.js',
- 'test/test-main.js',
- {pattern: '**/*.js', included: false},
- ],
- // list of files to exclude
- exclude: [],
- reporters: ['dots'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- autoWatch: true,
- browsers: ['PhantomJS'],
- captureTimeout: 2000,
- singleRun: true,
- autoWatchBatchDelay: 1000,
- });
- };
|