File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import setupActions from './setupActions'
55
66const solutionActions = async ( workspaceRoot : vscode . WorkspaceFolder , stepActions : G . StepActions ) : Promise < void > => {
77 await git . clear ( )
8- setupActions ( workspaceRoot , stepActions )
8+ return setupActions ( workspaceRoot , stepActions )
99}
1010
1111export default solutionActions
Original file line number Diff line number Diff line change @@ -105,7 +105,9 @@ class Channel implements Channel {
105105 return
106106 // load solution step actions (git commits, commands, open files)
107107 case 'SOLUTION_ACTIONS' :
108- solutionActions ( this . workspaceRoot , action . payload )
108+ await solutionActions ( this . workspaceRoot , action . payload )
109+ // run test following solution to update position
110+ vscode . commands . executeCommand ( 'coderoad.run_test' , action . payload )
109111 return
110112
111113 default :
You can’t perform that action at this time.
0 commit comments