mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
12 lines
295 B
JavaScript
Vendored
12 lines
295 B
JavaScript
Vendored
module.exports = function (karma) {
|
|
karma.set({
|
|
frameworks: ['mocha'],
|
|
files: ['test/tmp/browserified.js'],
|
|
reporters: ['mocha-own'],
|
|
mochaOwnReporter: {
|
|
reporter: 'spec'
|
|
},
|
|
browsers: process.env.TRAVIS ? ['Firefox', 'PhantomJS'] : ['Chrome', 'PhantomJS']
|
|
})
|
|
}
|