@@ -23,18 +23,18 @@ const tutorialConfig = async (
2323handleError ( {
2424title :error . message ,
2525description :
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
3131await git . setupRemote ( config . repo . uri ) . catch ( ( error ) => {
3232onError ( error )
33- handleError ( { title :error . message , description :'Remove your current Git project andrestarting ' } )
33+ handleError ( { title :error . message , description :'Remove your current Git project andreload 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
4040const shouldRunTest = ( document :vscode . TextDocument ) :boolean => {