Skip to content

Commit 9ae17f8

Browse files
committed
Update server.js for kicking off example tests
1 parent 45da8a7 commit 9ae17f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integrations/node_js/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ var app = express();
55
var exec = require('child_process').exec;
66

77
function run_my_first_test_in_firefox() {
8-
exec("nosetests my_first_test.py --with-selenium");
8+
exec("nosetests my_first_test.py --with-selenium --browser=firefox");
99
}
1010

1111
function run_my_first_test_in_chrome() {
1212
exec("nosetests my_first_test.py --with-selenium --browser=chrome");
1313
}
1414

1515
function run_my_first_test_in_firefox_with_demo_mode() {
16-
exec("nosetests my_first_test.py --with-selenium --demo_mode");
16+
exec("nosetests my_first_test.py --with-selenium --browser=firefox --demo_mode");
1717
}
1818

1919
function run_my_first_test_in_chrome_with_demo_mode() {

0 commit comments

Comments
 (0)