File tree 2 files changed +4
-2
lines changed
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'
5
5
6
6
const solutionActions = async ( workspaceRoot : vscode . WorkspaceFolder , stepActions : G . StepActions ) : Promise < void > => {
7
7
await git . clear ( )
8
- setupActions ( workspaceRoot , stepActions )
8
+ return setupActions ( workspaceRoot , stepActions )
9
9
}
10
10
11
11
export default solutionActions
Original file line number Diff line number Diff line change @@ -105,7 +105,9 @@ class Channel implements Channel {
105
105
return
106
106
// load solution step actions (git commits, commands, open files)
107
107
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 )
109
111
return
110
112
111
113
default :
You can’t perform that action at this time.
0 commit comments