Tone.js/gulp/karma.conf.js

114 lines
2.7 KiB
JavaScript
Raw Normal View History

2016-03-04 21:25:44 +00:00
// Karma configuration
// Generated on Mon Feb 01 2016 22:48:23 GMT-0500 (EST)
module.exports = function(config) {
2017-03-26 18:51:25 +00:00
var configuration = {
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '../',
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'requirejs'],
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// list of files / patterns to load in the browser
files: [
// '../test/helper/Test.js',
'test/karmaTest.js',
{pattern: 'test/*/*.js', included: false},
{pattern: 'examples/*.html', included: false},
{pattern: 'examples/scripts/*.js', included: false},
{pattern: 'examples/style/*.css', included: false},
{pattern: 'examples/audio/*/*.mp3', included: false},
2017-03-26 19:40:40 +00:00
{pattern: 'examples/audio/*.mp3', included: false},
{pattern: 'examples/audio/*/*.png', included: false},
{pattern: 'build/*.js', included: false},
2017-03-26 18:51:25 +00:00
{pattern: 'test/audio/*', included: false},
{pattern: 'Tone/*/*.js', included: false},
],
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// list of files to exclude
exclude: [],
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {},
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
//plugins
plugins : [
'karma-mocha',
'karma-requirejs',
'karma-chrome-launcher',
'karma-firefox-launcher'
],
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
client: {
mocha: {
reporter: 'html', // change Karma's debug.html to the mocha web reporter
ui: 'bdd'
}
},
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// web server port
port: 9876,
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// enable / disable colors in the output (reporters and logs)
colors: true,
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
// browsers: ['Chrome'],
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
2016-03-04 21:25:44 +00:00
2017-03-26 18:51:25 +00:00
//custom launcher for travis
customLaunchers: {
Chrome_travis_ci: {
base: 'Chrome',
flags: ['--no-sandbox']
}
}
};
if (process.env.TRAVIS) {
configuration.browsers = ['Chrome_travis_ci'];
} else {
// configuration.browsers = ['Chrome', 'Firefox'];
configuration.browsers = ['Chrome'];
}
2016-03-04 21:25:44 +00:00
config.set(configuration);
};