MCPcopy Create free account
hub / github.com/coderoad/coderoad-vscode / onContinue

Function onContinue

src/services/hooks/index.ts:60–66  ·  view source on GitHub ↗
(actions: TT.StepActions, tutorialId: string)

Source from the content-addressed store, hash-verified

58
59// run when a tutorial is continued
60export const onContinue = async (actions: TT.StepActions, tutorialId: string): Promise<void> => {
61 await runCommands(actions?.commands)
62 await runVSCodeCommands(actions?.vscodeCommands)
63 webhooks.onContinue({
64 tutorialId,
65 })
66}
67
68// run when an uncaught exception is thrown
69export const onError = async (error: Error): Promise<void> => {

Callers

nothing calls this directly

Calls 3

runCommandsFunction · 0.85
runVSCodeCommandsFunction · 0.85
onContinueMethod · 0.65

Tested by

no test coverage detected