(actions: TT.StepActions)
| 29 | |
| 30 | // run when a step starts |
| 31 | export const onSetupEnter = async (actions: TT.StepActions): Promise<void> => { |
| 32 | await loadCommits(actions?.commits) |
| 33 | await openFiles(actions?.files) |
| 34 | await loadWatchers(actions?.watchers) |
| 35 | await runCommands(actions?.commands) |
| 36 | await runVSCodeCommands(actions?.vscodeCommands) |
| 37 | } |
| 38 | |
| 39 | // run when a step solution starts |
| 40 | export const onSolutionEnter = async (actions: TT.StepActions): Promise<void> => { |
nothing calls this directly
no test coverage detected