From 329b6232b6a987dacefe57df77b0417d9e35a49b Mon Sep 17 00:00:00 2001 From: John Weisz Date: Tue, 17 Dec 2024 16:38:10 -0500 Subject: [PATCH] test fix --- src/Template.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Template.test.js b/src/Template.test.js index 16990a70..6efeaf77 100644 --- a/src/Template.test.js +++ b/src/Template.test.js @@ -13,6 +13,7 @@ describe("button configuration renders correctly", () => { }); expect(html).not.toMatch(/DS Logon/); expect(html).not.toMatch(/My HealtheVet/); + expect(html).not.toMatch(/Login.gov<\/title>/); }); test("does render element", async () => { @@ -27,5 +28,6 @@ describe("button configuration renders correctly", () => { }); expect(html).toMatch(/DS Logon/); expect(html).toMatch(/My HealtheVet/); + expect(html).toMatch(/<title>Login.gov<\/title>/); }); });