File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,19 @@ var app = express();
5
5
var exec = require ( 'child_process' ) . exec ;
6
6
7
7
function run_my_first_test_in_chrome ( ) {
8
- exec ( "nosetests my_first_test.py --browser=chrome -s" ) ;
8
+ exec ( "pytest my_first_test.py --browser=chrome -s" ) ;
9
9
}
10
10
11
11
function run_my_first_test_in_firefox ( ) {
12
- exec ( "nosetests my_first_test.py --browser=firefox -s" ) ;
12
+ exec ( "pytest my_first_test.py --browser=firefox -s" ) ;
13
13
}
14
14
15
15
function run_my_first_test_in_chrome_with_demo_mode ( ) {
16
- exec ( "nosetests my_first_test.py --browser=chrome --demo_mode" ) ;
16
+ exec ( "pytest my_first_test.py --browser=chrome --demo_mode -s " ) ;
17
17
}
18
18
19
19
function run_my_first_test_in_firefox_with_demo_mode ( ) {
20
- exec ( "nosetests my_first_test.py --browser=firefox --demo_mode" ) ;
20
+ exec ( "pytest my_first_test.py --browser=firefox --demo_mode -s " ) ;
21
21
}
22
22
23
23
app . get ( '/' , function ( req , res ) {
You can’t perform that action at this time.
0 commit comments