using all browsers by default

This commit is contained in:
Yotam Mann 2018-01-16 11:04:47 -05:00
parent 9dbb54ff6a
commit da3ea72ba1

View file

@ -1,133 +1,120 @@
// Karma configuration // Karma configuration
// Generated on Mon Feb 01 2016 22:48:23 GMT-0500 (EST) // Generated on Mon Feb 01 2016 22:48:23 GMT-0500 (EST)
// var BROWSERS = ['HeadlessChrome', 'HeadlessFirefox', 'Safari'] var BROWSERS = ["HeadlessChrome", "HeadlessFirefox", "Safari"];
var BROWSERS = ['Safari'] // var BROWSERS = ['Safari']
if (process.env.BROWSER === 'chrome'){ if (process.env.BROWSER === "chrome"){
BROWSERS = ['HeadlessChrome'] BROWSERS = ["HeadlessChrome"];
} else if (process.env.BROWSER === 'firefox'){ } else if (process.env.BROWSER === "firefox"){
BROWSERS = ['HeadlessFirefox'] BROWSERS = ["HeadlessFirefox"];
} else if (process.env.BROWSER === 'safari'){ } else if (process.env.BROWSER === "safari"){
BROWSERS = ['Safari'] BROWSERS = ["Safari"];
} }
module.exports = function(config) { module.exports = function(config){
var configuration = { var configuration = {
// base path that will be used to resolve all patterns (eg. files, exclude) // base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '../', basePath : "../",
// frameworks to use // frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'requirejs'], frameworks : ["mocha", "requirejs"],
// list of files / patterns to load in the browser // list of files / patterns to load in the browser
files: [ files : [
// '../test/helper/Test.js', // '../test/helper/Test.js',
'test/karmaTest.js', "test/karmaTest.js",
{pattern: 'test/*/*.js', included: false}, { pattern : "test/*/*.js", included : false },
{pattern: 'examples/*.html', included: false}, { pattern : "examples/*.html", included : false },
{pattern: 'examples/scripts/*.js', included: false}, { pattern : "examples/scripts/*.js", included : false },
{pattern: 'examples/style/*.css', included: false}, { pattern : "examples/style/*.css", included : false },
{pattern: 'examples/audio/*/*.mp3', included: false}, { pattern : "examples/audio/*/*.mp3", included : false },
{pattern: 'examples/audio/*.mp3', included: false}, { pattern : "examples/audio/*.mp3", included : false },
{pattern: 'examples/audio/*/*.png', included: false}, { pattern : "examples/audio/*/*.png", included : false },
{pattern: 'build/*.js', included: false}, { pattern : "build/*.js", included : false },
{pattern: 'test/audio/*', included: false}, { pattern : "test/audio/*", included : false },
{pattern: 'Tone/*/*.js', included: false}, { pattern : "Tone/*/*.js", included : false },
], ],
// list of files to exclude // list of files to exclude
exclude: [], exclude : [],
// preprocess matching files before serving them to the browser // preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: { preprocessors : {
'Tone/!(shim)/*.js': ['coverage'] "Tone/!(shim)/*.js" : ["coverage"]
}, },
// test results reporter to use // test results reporter to use
// possible values: 'dots', 'progress' // possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter // available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['dots', 'coverage'], reporters : ["dots", "coverage"],
coverageReporter: { coverageReporter : {
type : 'lcov', type : "lcov",
dir : 'test/coverage/' dir : "test/coverage/"
}, },
//plugins //plugins
plugins : [ plugins : [
'karma-coverage', "karma-coverage",
'karma-mocha', "karma-mocha",
'karma-requirejs', "karma-requirejs",
'karma-chrome-launcher', "karma-chrome-launcher",
'karma-firefox-launcher', "karma-firefox-launcher",
'karma-safari-launcher' "karma-safari-launcher"
], ],
client : {
client: { mocha : {
mocha: { reporter : "html", // change Karma's debug.html to the mocha web reporter
reporter: 'html', // change Karma's debug.html to the mocha web reporter ui : "bdd"
ui: 'bdd'
} }
}, },
// 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,
// set the inactivity level to longer // set the inactivity level to longer
browserNoActivityTimeout : 40000, browserNoActivityTimeout : 40000,
// 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_ERROR, logLevel : config.LOG_ERROR,
// enable / disable watching file and executing tests whenever any file changes // enable / disable watching file and executing tests whenever any file changes
autoWatch: false, autoWatch : false,
// start these browsers // start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: BROWSERS, browsers : BROWSERS,
// Continuous Integration mode // Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits // if true, Karma captures browsers, runs the tests and exits
singleRun: false, singleRun : false,
// Concurrency level // Concurrency level
// how many browser should be started simultaneous // how many browser should be started simultaneous
// concurrency: process.env.TRAVIS ? 1 : Infinity, // concurrency: process.env.TRAVIS ? 1 : Infinity,
concurrency: Infinity, concurrency : Infinity,
//custom launcher for travis //custom launcher for travis
customLaunchers: { customLaunchers : {
HeadlessChrome: { HeadlessChrome : {
base: 'ChromeHeadless', base : "ChromeHeadless",
flags: ['--no-sandbox', '--use-fake-ui-for-media-stream', '--use-fake-device-for-media-stream'] flags : ["--no-sandbox", "--use-fake-ui-for-media-stream", "--use-fake-device-for-media-stream"]
}, },
HeadlessFirefox: { HeadlessFirefox : {
base: 'Firefox', base : "Firefox",
flags: [ '-headless' ], flags : ["-headless"],
prefs: { prefs : {
'media.navigator.permission.disabled': true, "media.navigator.permission.disabled" : true,
'focusmanager.testmode': true "focusmanager.testmode" : true
} }
} }
} }