File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/server/src/__tests__ Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,11 @@ describe('configCommand', () => {
110110
111111 // Verify execSync was called twice (remove + add)
112112 expect ( mockExecSync ) . toHaveBeenCalledTimes ( 2 ) ;
113-
113+
114114 // First call should be remove command
115115 const removeCommand = mockExecSync . mock . calls [ 0 ] [ 0 ] ;
116116 expect ( removeCommand ) . toBe ( 'claude mcp remove pointer -s user' ) ;
117-
117+
118118 // Second call should be add command
119119 const addCommand = mockExecSync . mock . calls [ 1 ] [ 0 ] ;
120120 expect ( addCommand ) . toBe ( 'claude mcp add pointer -s user --env MCP_POINTER_PORT=7007 -- npx -y @mcp-pointer/server start' ) ;
@@ -135,7 +135,7 @@ describe('configCommand', () => {
135135
136136 // Verify execSync was still called twice
137137 expect ( mockExecSync ) . toHaveBeenCalledTimes ( 2 ) ;
138-
138+
139139 // Should still log success message
140140 expect ( mockLoggerInfo ) . toHaveBeenCalledWith ( expect . stringContaining ( '✅ Successfully configured MCP Pointer for Claude Code' ) ) ;
141141 // Should not log removal message when remove fails
You can’t perform that action at this time.
0 commit comments