Skip to content

Commit d33284e

Browse files
committed
Flip baseUrl to url in test as well
1 parent c1f3cee commit d33284e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kiloclaw/controller/src/config-writer.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ describe('writeMcporterConfig', () => {
793793
expect(written).toHaveLength(1);
794794
const config = JSON.parse(written[0].data);
795795
expect(config.mcpServers.linear).toEqual({
796-
baseUrl: 'https://mcp.linear.app/mcp',
796+
url: 'https://mcp.linear.app/mcp',
797797
headers: { Authorization: 'Bearer ${LINEAR_API_KEY}' },
798798
});
799799
});
@@ -802,7 +802,7 @@ describe('writeMcporterConfig', () => {
802802
const existing = JSON.stringify({
803803
mcpServers: {
804804
linear: {
805-
baseUrl: 'https://mcp.linear.app/mcp',
805+
url: 'https://mcp.linear.app/mcp',
806806
headers: { Authorization: 'Bearer ${LINEAR_API_KEY}' },
807807
},
808808
},

0 commit comments

Comments
 (0)