2016-04-13 11:15:04 +02:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var q = require('q');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform common actions before each test case, e.g. printing the test case
|
|
|
|
* name to stdout.
|
|
|
|
* @param {Mocha.Context} context The test context
|
|
|
|
*/
|
|
|
|
module.exports.beforeEach = function(context) {
|
|
|
|
var desc = context.currentTest.fullTitle();
|
|
|
|
console.log();
|
|
|
|
console.log(desc);
|
|
|
|
console.log(new Array(1 + desc.length).join("="));
|
2016-08-11 12:40:40 +02:00
|
|
|
|
|
|
|
// some tests store things in localstorage. Improve independence of tests
|
|
|
|
// by making sure that they don't inherit any old state.
|
|
|
|
window.localStorage.clear();
|
2016-04-13 11:15:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns true if the current environment supports webrtc
|
|
|
|
*/
|
|
|
|
module.exports.browserSupportsWebRTC = function() {
|
|
|
|
var n = global.window.navigator;
|
|
|
|
return n.getUserMedia || n.webkitGetUserMedia ||
|
|
|
|
n.mozGetUserMedia;
|
|
|
|
};
|