adhere to coding style

This commit is contained in:
daviskoh
2015-02-04 21:56:40 -05:00
parent ce4f64dc73
commit 58198d8102

View File

@@ -1,42 +1,42 @@
'use strict'; 'use strict';
module.exports = function (config) { module.exports = function (config) {
config.set({ config.set({
// base path, that will be used to resolve files and exclude // base path, that will be used to resolve files and exclude
basePath: 'src', basePath: 'src',
// frameworks to use // frameworks to use
frameworks: ['jasmine'], frameworks: ['jasmine'],
// list of files / patterns to load in the browser // list of files / patterns to load in the browser
files: [ files: [
'Layout.js', 'Layout.js',
'Layout-test-utils.js', 'Layout-test-utils.js',
'__tests__/Layout-test.js', '__tests__/Layout-test.js',
'__tests__/Layout-consts-test.js' '__tests__/Layout-consts-test.js'
], ],
plugins: [ plugins: [
'karma-chrome-launcher', 'karma-chrome-launcher',
'karma-jasmine' 'karma-jasmine'
], ],
// web server port // web server port
port: 9876, port: 9876,
// enable / disable colors in the output (reporters and logs) // enable / disable colors in the output (reporters and logs)
colors: true, colors: true,
// level of logging // level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO, logLevel: config.LOG_INFO,
browsers: ['Chrome'], browsers: ['Chrome'],
// If browser does not capture in given timeout [ms], kill it // If browser does not capture in given timeout [ms], kill it
captureTimeout: 60000, captureTimeout: 60000,
singleRun: false singleRun: false
}); });
}; };