From 93c1dd1c5ca9085d810eeef16b25019c45195cea Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Mar 2026 14:34:08 +0000 Subject: [PATCH 1/2] Initial plan From 684add74a57d248e7d19c88d12fd4098b9a6cf80 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Mar 2026 14:39:17 +0000 Subject: [PATCH 2/2] Fix TestPlaywrightMCPServer/ToolsRegistered integration test assertion Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/gh-aw-mcpg/sessions/5c5f662b-ea85-4427-bd6a-d06ac9f63fe0 --- test/integration/playwright_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/playwright_test.go b/test/integration/playwright_test.go index a1976ff72..00b48b89e 100644 --- a/test/integration/playwright_test.go +++ b/test/integration/playwright_test.go @@ -206,8 +206,8 @@ func TestPlaywrightMCPServer(t *testing.T) { stderrStr := stderr.String() // Check that tools were registered - if !strings.Contains(stderrStr, "Registered 22 tools from playwright") && - !strings.Contains(stderrStr, "Registered tool: playwright___browser_close") { + if !strings.Contains(stderrStr, "tools from playwright") && + !strings.Contains(stderrStr, "Registered tool: playwright-browser_close") { t.Fatal("Expected playwright tools to be registered in server logs") }