@@ -23,8 +23,6 @@ export const createCommands = ({extensionPath, workspaceState, workspaceRoot}: C
23
23
return {
24
24
// initialize
25
25
[ COMMANDS . START ] :async ( ) => {
26
- console . log ( 'start' )
27
-
28
26
// TODO: replace with a prompt to open a workspace
29
27
// await isEmptyWorkspace()
30
28
@@ -62,13 +60,11 @@ export const createCommands = ({extensionPath, workspaceState, workspaceRoot}: C
62
60
const payload = { stepId :current ?current . stepId :currentStepId }
63
61
runTest ( {
64
62
onSuccess :( ) => {
65
- console . log ( 'COMMAND TEST_PASS' )
66
63
// send test pass message back to client
67
64
webview . send ( { type :'TEST_PASS' , payload} )
68
65
vscode . window . showInformationMessage ( 'PASS' )
69
66
} ,
70
67
onFail :( ) => {
71
- console . log ( 'COMMAND TEST_FAIL' )
72
68
// send test fail message back to client
73
69
webview . send ( { type :'TEST_FAIL' , payload} )
74
70
vscode . window . showWarningMessage ( 'FAIL' )
@@ -79,7 +75,6 @@ export const createCommands = ({extensionPath, workspaceState, workspaceRoot}: C
79
75
webview . send ( { type :'TEST_ERROR' , payload} )
80
76
} ,
81
77
onRun :( ) => {
82
- console . log ( 'COMMAND TEST_RUNNING' )
83
78
// send test run message back to client
84
79
webview . send ( { type :'TEST_RUNNING' , payload} )
85
80
}