Removes second audio track for fake FF devices.

This commit is contained in:
damencho 2015-12-08 19:00:02 -06:00
parent cb0d3c47df
commit 94a970efad
1 changed files with 3 additions and 1 deletions

View File

@ -170,7 +170,9 @@ function getConstraints(um, options) {
// this later can be a problem with some of the tests
if(RTCBrowserType.isFirefox() && options.firefox_fake_device)
{
constraints.audio = true;
// seems to be fixed now, removing this experimental fix, as having
// multiple audio tracks brake the tests
//constraints.audio = true;
constraints.fake = true;
}