mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 08:56:20 +00:00
23 lines
525 B
JavaScript
23 lines
525 B
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
frameworks: ["mocha"],
|
|
files: [
|
|
'test/vendor/*.js',
|
|
'lib/*.js',
|
|
'test/setup.coffee',
|
|
'test/ansi-test.coffee',
|
|
'test/jqconsole-test.coffee',
|
|
'test/prompt-test.coffee',
|
|
'test/shortcuts-test.coffee',
|
|
'test/history-test.coffee',
|
|
],
|
|
browsers: ['Chrome'],
|
|
reporters: ['dots'],
|
|
coffeePreprocessor: {
|
|
// options passed to the coffee compiler
|
|
options: {
|
|
bare: false,
|
|
}
|
|
},
|
|
});
|
|
};
|