From 298e0cd06a661b58e1f5920fb1d9abda1d7a8aa4 Mon Sep 17 00:00:00 2001 From: Price Date: Tue, 30 Jan 2024 15:59:48 -0500 Subject: [PATCH] Fix test --- github-ci/card/card.spec.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-ci/card/card.spec.tsx b/github-ci/card/card.spec.tsx index 1e8641b..685f0ba 100644 --- a/github-ci/card/card.spec.tsx +++ b/github-ci/card/card.spec.tsx @@ -4,6 +4,6 @@ import { BasicCard } from './card.composition'; it('renders with the correct text', () => { const { getByText } = render(); - const rendered = getByText('hello world!'); + const rendered = getByText('This is a card'); expect(rendered).toBeTruthy(); });