test: Remove duplicated/interactive testing fixtures

All integration tests now run without interactive browser usage, simplifying CI and testing infrastructure
This commit is contained in:
Chris Coutinho
2025-10-16 19:46:29 +02:00
parent e0a68d47a5
commit 51d1f075f5
5 changed files with 28 additions and 285 deletions
+2 -2
View File
@@ -38,11 +38,11 @@ async def test_mcp_oauth_tool_execution(nc_mcp_oauth_client):
)
async def test_mcp_oauth_client_with_playwright(nc_mcp_oauth_client_playwright):
async def test_mcp_oauth_client_with_playwright(nc_mcp_oauth_client):
"""Test that MCP OAuth client via Playwright can execute tools."""
# Test: Execute the 'nc_notes_search_notes' tool
result = await nc_mcp_oauth_client_playwright.call_tool(
result = await nc_mcp_oauth_client.call_tool(
"nc_notes_search_notes", arguments={"query": ""}
)