File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,18 +23,18 @@ const tutorialConfig = async (
2323 handleError ( {
2424 title : error . message ,
2525 description :
26- 'Be sure you install Git. See the docs for help https://git-scm.com/book/en/v2/Getting-Started-Installing-Git' ,
26+ 'Make sure you install Git. See the docs for help https://git-scm.com/book/en/v2/Getting-Started-Installing-Git' ,
2727 } )
2828 } )
2929
3030 // TODO if remote not already set
3131 await git . setupRemote ( config . repo . uri ) . catch ( ( error ) => {
3232 onError ( error )
33- handleError ( { title : error . message , description : 'Remove your current Git project and restarting ' } )
33+ handleError ( { title : error . message , description : 'Remove your current Git project and reload the editor ' } )
3434 } )
3535 }
3636
37- vscode . commands . executeCommand ( COMMANDS . CONFIG_TEST_RUNNER , config . testRunner )
37+ await vscode . commands . executeCommand ( COMMANDS . CONFIG_TEST_RUNNER , config . testRunner )
3838
3939 // verify if file test should run based on document saved
4040 const shouldRunTest = ( document : vscode . TextDocument ) : boolean => {
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class Channel implements Channel {
8383 case 'EDITOR_TUTORIAL_CONFIG' :
8484 const data : TT . Tutorial = action . payload . tutorial
8585 // setup tutorial config (save watcher, test runner, etc)
86- this . context . setTutorial ( this . workspaceState , data )
86+ await this . context . setTutorial ( this . workspaceState , data )
8787
8888 await tutorialConfig ( { config : data . config } , onError )
8989
You can’t perform that action at this time.
0 commit comments