File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const gitService = {
1616 "action" : "Init" ,
1717 "path" : path
1818 } ,
19- "InitResponse "
19+ "gitInitResponse "
2020 ) ;
2121 } ,
2222 /**
@@ -78,7 +78,7 @@ const gitService = {
7878 "action" : "Status" ,
7979 "path" : path
8080 } ,
81- "StatusResponse "
81+ "gitStatusResponse "
8282 ) ;
8383 } ,
8484 /**
@@ -157,7 +157,7 @@ const gitService = {
157157 "action" : "Logs" ,
158158 "path" : path
159159 } ,
160- "LogsResponse "
160+ "gitLogsResponse "
161161 ) ;
162162 } ,
163163 /**
Original file line number Diff line number Diff line change 1- const codebolt = require ( '@codebolt/codeboltjs' ) . default ;
1+ const codebolt = require ( '@codebolt/codeboltjs' ) ;
22
33async function testBrowserOperations ( ) {
44 console . log ( 'π Testing Browser Operations' ) ;
Original file line number Diff line number Diff line change 1- const codebolt = require ( '@codebolt/codeboltjs' ) . default ;
1+ const codebolt = require ( '@codebolt/codeboltjs' ) ;
22
33async function testChatOperations ( ) {
44 console . log ( 'π¬ Testing Chat Operations' ) ;
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ async function testGitOperations() {
1111 await codebolt . waitForConnection ( ) ;
1212
1313 console . log ( '\n1. Testing git init...' ) ;
14- // const initResult = await codebolt.git.init();
15- // console.log('β
Git init result:', initResult);
14+ const initResult = await codebolt . git . init ( ) ;
15+ console . log ( 'β
Git init result:' , initResult ) ;
1616
1717 console . log ( '\n2. Testing git status...' ) ;
1818 const statusResult = await codebolt . git . status ( ) ;
You canβt perform that action at this time.
0 commit comments