You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
568 B

/* eslint-env node */
'use strict';
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['browserify', 'mocha', 'chai'],
files: [
'test/rtcpeerconnection.js'
],
exclude: [],
preprocessors: {
'test/rtcpeerconnection.js': ['browserify']
},
reporters: ['mocha'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
singleRun: true,
concurrency: Infinity,
browsers: ['Edge'],
browserify: {
debug: true,
transform: ['brfs']
}
});
};