File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ BROWSERSTACK_ACCESS_KEY is not set. Did you create the .env file?
45
45
if ( error ) throw error
46
46
47
47
console . log ( 'Connected. Now testing...' )
48
- await runNighwatchCli ( ) . finally ( ( ) => {
48
+ await runNightwatchCli ( ) . finally ( ( ) => {
49
49
// Code to stop browserstack local after end of single test
50
50
bs_local . stop ( ( ) => {
51
51
server ?. close ( )
@@ -54,7 +54,7 @@ BROWSERSTACK_ACCESS_KEY is not set. Did you create the .env file?
54
54
}
55
55
)
56
56
} else {
57
- await runNighwatchCli ( )
57
+ await runNightwatchCli ( )
58
58
server ?. close ( )
59
59
}
60
60
} catch ( ex ) {
@@ -65,7 +65,7 @@ BROWSERSTACK_ACCESS_KEY is not set. Did you create the .env file?
65
65
}
66
66
} ) ( )
67
67
68
- function runNighwatchCli ( ) {
68
+ function runNightwatchCli ( ) {
69
69
return new Promise ( ( resolve , reject ) => {
70
70
Nightwatch . cli ( argv => {
71
71
Nightwatch . CliRunner ( argv ) . setup ( ) . runTests ( ) . then ( resolve ) . catch ( reject )
You can’t perform that action at this time.
0 commit comments