Skip to content

Commit 629b0df

Browse files
committed
Update version-sync test's startup-log regex to match the renamed madmcp-server log string
1 parent 91d4b17 commit 629b0df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/version-sync.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe("version sync", () => {
1616
// and not the other (or to server.js but not package.json) fails CI
1717
// immediately instead of silently drifting again.
1818
const mcpServerMatch = serverSrc.match(/new McpServer\(\{[^}]*version:\s*"([^"]+)"/s);
19-
const logMatch = serverSrc.match(/manufact-mcp-server v([\d.]+) listening/);
19+
const logMatch = serverSrc.match(/madmcp-server v([\d.]+) listening/);
2020

2121
expect(mcpServerMatch, "Could not find McpServer({ version: \"...\" }) in server.js -- update this test's regex if that constructor call changed shape.").not.toBeNull();
2222
expect(logMatch, "Could not find the 'manufact-mcp-server vX.Y.Z listening' startup log in server.js -- update this test's regex if that message changed.").not.toBeNull();

0 commit comments

Comments
 (0)