@@ -23,18 +23,18 @@ const tutorialConfig = async (
23
23
handleError ( {
24
24
title :error . message ,
25
25
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' ,
27
27
} )
28
28
} )
29
29
30
30
// TODO if remote not already set
31
31
await git . setupRemote ( config . repo . uri ) . catch ( ( error ) => {
32
32
onError ( 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 ' } )
34
34
} )
35
35
}
36
36
37
- vscode . commands . executeCommand ( COMMANDS . CONFIG_TEST_RUNNER , config . testRunner )
37
+ await vscode . commands . executeCommand ( COMMANDS . CONFIG_TEST_RUNNER , config . testRunner )
38
38
39
39
// verify if file test should run based on document saved
40
40
const shouldRunTest = ( document :vscode . TextDocument ) :boolean => {