Adding webrtc_video_streaming test
This test is streaming video and audio between two bots using webrtc js api.
R=andresp@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/28469004
git-svn-id: http://webrtc.googlecode.com/svn/trunk@7261 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/tools/rtcbot/test.js b/webrtc/tools/rtcbot/test.js
index c1db4fc..f731773 100644
--- a/webrtc/tools/rtcbot/test.js
+++ b/webrtc/tools/rtcbot/test.js
@@ -17,10 +17,10 @@
var BotManager = require('./botmanager.js');
function Test(botType) {
- // Make the test fail if not completed in 3 seconds.
+ // TODO(houssainy) set the time out.
this.timeout_ = setTimeout(
this.fail.bind(this, "Test timeout!"),
- 5000);
+ 10000);
this.botType_ = botType;
}
@@ -82,4 +82,4 @@
script.runInNewContext({ test: new Test(process.argv[2]) });
}
-runTest("./test/simple_offer_answer.js");
+runTest("./test/webrtc_video_streaming.js");