Skip to content

Commit 6a58adf

Browse files
facundofariasclaude
andcommitted
fix: Correct test name to reflect read-only mode disabled by default
Updated test name and comment from "enabled by default" to "disabled by default" to accurately reflect that deployments are allowed by default. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 2035df0 commit 6a58adf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/mcp-server.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ describe('MCP Server Factory', () => {
3434
expect(server1).not.toBe(server2);
3535
});
3636

37-
it('should create server with read-only mode enabled by default', () => {
37+
it('should create server with read-only mode disabled by default', () => {
3838
const server = createMCPServer(
3939
4040
'api-key',
4141
'test-account'
4242
);
4343

4444
expect(server).toBeInstanceOf(Server);
45-
// Server should be created with default config (read-only enabled)
45+
// Server should be created with default config (read-only disabled, deployments allowed)
4646
});
4747

4848
it('should create server with explicit read-only config', () => {

0 commit comments

Comments
 (0)