@@ -23,8 +23,6 @@ export const createCommands = ({extensionPath, workspaceState, workspaceRoot}: C
2323return {
2424// initialize
2525[ COMMANDS . START ] :async ( ) => {
26- console . log ( 'start' )
27-
2826// TODO: replace with a prompt to open a workspace
2927// await isEmptyWorkspace()
3028
@@ -62,13 +60,11 @@ export const createCommands = ({extensionPath, workspaceState, workspaceRoot}: C
6260const payload = { stepId :current ?current . stepId :currentStepId }
6361runTest ( {
6462onSuccess :( ) => {
65- console . log ( 'COMMAND TEST_PASS' )
6663// send test pass message back to client
6764webview . send ( { type :'TEST_PASS' , payload} )
6865vscode . window . showInformationMessage ( 'PASS' )
6966} ,
7067onFail :( ) => {
71- console . log ( 'COMMAND TEST_FAIL' )
7268// send test fail message back to client
7369webview . send ( { type :'TEST_FAIL' , payload} )
7470vscode . window . showWarningMessage ( 'FAIL' )
@@ -79,7 +75,6 @@ export const createCommands = ({extensionPath, workspaceState, workspaceRoot}: C
7975webview . send ( { type :'TEST_ERROR' , payload} )
8076} ,
8177onRun :( ) => {
82- console . log ( 'COMMAND TEST_RUNNING' )
8378// send test run message back to client
8479webview . send ( { type :'TEST_RUNNING' , payload} )
8580}