UNPKG

voluptatequisquam

Version:

Automatic layout of video elements (publisher and subscriber) minimising white-space for the OpenTok on WebRTC API. This is intended for use with the OpenTok on WebRTC JS API.

78 lines (55 loc) 1.76 kB
// Karma configuration // Generated on Wed Sep 03 2014 13:49:54 GMT+1000 (EST) module.exports = (config) => { const browser = 'chrome'; config.set({ // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: ['jasmine'], files: [ '../opentok-layout.js', '**/*spec.js', ], // list of files to exclude exclude: [ ], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { 'opentok-layout.js': 'coverage', '**/*spec.js': 'babel', }, babelPreprocessor: { options: { presets: ['env'], sourceMap: 'inline', }, }, // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter reporters: ['progress', 'coverage', 'saucelabs'], coverageReporter: { type: 'lcov', dir: '../coverage/', }, sauceLabs: { startConnect: false, tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER, }, // web server port port: 9876, // enable / disable colors in the output (reporters and logs) colors: true, // level of logging logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, browsers: [browser[0].toUpperCase() + browser.substr(1)], // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits singleRun: false, }); };