scratch – Blame information for rev 125

Subversion Repositories:
Rev:
Rev Author Line No. Line
125 office 1 module.exports = function(config) {
2  
3 config.set({
4 basePath: '',
5 frameworks: ['jasmine'],
6 files: [
7 'lib/jquery/jquery.js',
8 'lib/angular/angular.js',
9 'dist/bootstrap-tagsinput.min.js',
10 'dist/bootstrap-tagsinput-angular.min.js',
11 'test/helpers.js',
12 { pattern: 'test/bootstrap-tagsinput/*.tests.js' }
13 ],
14 reporters: ['progress'],
15 port: 9876,
16 logLevel: config.LOG_DEBUG,
17 captureTimeout: 60000
18 });
19  
20 };