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 = {
16
16
"action" : "Init" ,
17
17
"path" : path
18
18
} ,
19
- "InitResponse "
19
+ "gitInitResponse "
20
20
) ;
21
21
} ,
22
22
/**
@@ -78,7 +78,7 @@ const gitService = {
78
78
"action" : "Status" ,
79
79
"path" : path
80
80
} ,
81
- "StatusResponse "
81
+ "gitStatusResponse "
82
82
) ;
83
83
} ,
84
84
/**
@@ -157,7 +157,7 @@ const gitService = {
157
157
"action" : "Logs" ,
158
158
"path" : path
159
159
} ,
160
- "LogsResponse "
160
+ "gitLogsResponse "
161
161
) ;
162
162
} ,
163
163
/**
Original file line number Diff line number Diff line change 1
- const codebolt = require ( '@codebolt/codeboltjs' ) . default ;
1
+ const codebolt = require ( '@codebolt/codeboltjs' ) ;
2
2
3
3
async function testBrowserOperations ( ) {
4
4
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' ) ;
2
2
3
3
async function testChatOperations ( ) {
4
4
console . log ( '💬 Testing Chat Operations' ) ;
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ async function testGitOperations() {
11
11
await codebolt . waitForConnection ( ) ;
12
12
13
13
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 ) ;
16
16
17
17
console . log ( '\n2. Testing git status...' ) ;
18
18
const statusResult = await codebolt . git . status ( ) ;
You can’t perform that action at this time.
0 commit comments