File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,11 @@ export class DataContext extends DataContextShell {
61
61
toAwait . push ( this . actions . project . setActiveProject ( this . config . launchArgs . projectRoot ) )
62
62
}
63
63
64
- return Promise . all ( toAwait )
64
+ if ( this . config . launchArgs . testingType ) {
65
+ toAwait . push ( this . actions . wizard . setTestingType ( this . config . launchArgs . testingType ) )
66
+ }
67
+
68
+ return Promise . all ( toAwait ) . then ( this . actions . wizard . navigate ( 'forward' ) )
65
69
}
66
70
67
71
get os ( ) {
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { BrowserWindow } from 'electron'
5
5
import Debug from 'debug'
6
6
import cwd from '../cwd'
7
7
import savedState from '../saved_state'
8
+ import { getPathToDesktopIndex } from '@packages/resolve-dist'
8
9
9
10
const debug = Debug ( 'cypress:server:windows' )
10
11
You can’t perform that action at this time.
0 commit comments