c7f222e2
Artem
first
|
1
2
3
4
5
6
7
8
9
10
11
12
|
module.exports = function(config) {
config.set({
autoWatch : true,
browsers : ['Firefox'],
files : ['../vendor/*.js', '../lib/*.css', '../lib/*.js', 'lib/jasmine-jquery.js', 'lib/helper.js', 'options_spec.js', '*spec.js' ],
frameworks : ['jasmine'],
logLevel : config.LOG_ERROR,
port : 9876,
reporters : ['dots'],
singleRun : true
});
};
|