From 92c0c94ddac60ff9f58d716e738650e249d6fa75 Mon Sep 17 00:00:00 2001 From: Bianca Lisle Date: Mon, 10 Nov 2025 20:15:10 +0000 Subject: [PATCH 1/2] chore: fix perf advisor test --- tests/integration/tools/atlas/performanceAdvisor.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/tools/atlas/performanceAdvisor.test.ts b/tests/integration/tools/atlas/performanceAdvisor.test.ts index 1d1f8553..c5432300 100644 --- a/tests/integration/tools/atlas/performanceAdvisor.test.ts +++ b/tests/integration/tools/atlas/performanceAdvisor.test.ts @@ -247,7 +247,7 @@ describe("mocked atlas-get-performance-advisor", () => { }, }); - expect(response.isError).toBe(false); + expect(response.isError).toBe(undefined); const elements = getResponseElements(response.content); expect(elements).toHaveLength(2); From 6567c79a3a1edfa6b13a5876dd7a77461ae1c846 Mon Sep 17 00:00:00 2001 From: Bianca Lisle <40155621+blva@users.noreply.github.com> Date: Tue, 11 Nov 2025 13:22:34 +0000 Subject: [PATCH 2/2] Update tests/integration/tools/atlas/performanceAdvisor.test.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tests/integration/tools/atlas/performanceAdvisor.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/tools/atlas/performanceAdvisor.test.ts b/tests/integration/tools/atlas/performanceAdvisor.test.ts index c5432300..9f9cc73a 100644 --- a/tests/integration/tools/atlas/performanceAdvisor.test.ts +++ b/tests/integration/tools/atlas/performanceAdvisor.test.ts @@ -247,7 +247,7 @@ describe("mocked atlas-get-performance-advisor", () => { }, }); - expect(response.isError).toBe(undefined); + expect(response.isError).toBeUndefined(); const elements = getResponseElements(response.content); expect(elements).toHaveLength(2);