From 933cb5e21b40fe12d357b019882bf90a0194ee25 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 21:53:49 +0000 Subject: [PATCH 1/2] Initial plan From e785500509e0d6295e6be211e92e383ccf404078 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 21:57:12 +0000 Subject: [PATCH 2/2] fix: update playwright test to match current tool count (21) and naming format (dash) Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --- 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 a1976ff7..c045665d 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, "Registered 21 tools from playwright") && + !strings.Contains(stderrStr, "Registered tool: playwright-browser_close") { t.Fatal("Expected playwright tools to be registered in server logs") }