Removes second audio track for fake FF devices.

This commit is contained in:
damencho 2015-12-08 19:00:02 -06:00
parent 08107ca95b
commit 75a822be66
1 changed files with 3 additions and 1 deletions

View File

@ -146,7 +146,9 @@ function getConstraints(um, resolution, bandwidth, fps, desktopStream) {
// this later can be a problem with some of the tests
if(RTCBrowserType.isFirefox() && config.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;
}