Skip to content

Commit 31debc0

Browse files
committed
Fix lint
1 parent ff81246 commit 31debc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/server/src/__tests__/config.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)