We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45da8a7 commit 9ae17f8Copy full SHA for 9ae17f8
integrations/node_js/server.js
@@ -5,15 +5,15 @@ var app = express();
5
var exec = require('child_process').exec;
6
7
function run_my_first_test_in_firefox() {
8
- exec("nosetests my_first_test.py --with-selenium");
+ exec("nosetests my_first_test.py --with-selenium --browser=firefox");
9
}
10
11
function run_my_first_test_in_chrome() {
12
exec("nosetests my_first_test.py --with-selenium --browser=chrome");
13
14
15
function run_my_first_test_in_firefox_with_demo_mode() {
16
- exec("nosetests my_first_test.py --with-selenium --demo_mode");
+ exec("nosetests my_first_test.py --with-selenium --browser=firefox --demo_mode");
17
18
19
function run_my_first_test_in_chrome_with_demo_mode() {
0 commit comments