From 689f47d649125c1a172e3d1c21e2c1755ac40c63 Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Wed, 20 Jul 2022 14:04:59 +0200 Subject: [PATCH] chore: reenable skipped byText tests --- src/queries/__tests__/text.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/queries/__tests__/text.test.tsx b/src/queries/__tests__/text.test.tsx index 8176a0278..d9a0b2d96 100644 --- a/src/queries/__tests__/text.test.tsx +++ b/src/queries/__tests__/text.test.tsx @@ -149,7 +149,7 @@ describe('findBy options deprecations', () => { }, 20000); }); -test.skip('getByText works properly with custom text component', () => { +test('getByText works properly with custom text component', () => { function BoldText({ children }: ChildrenProps) { return {children}; } @@ -163,7 +163,7 @@ test.skip('getByText works properly with custom text component', () => { ).toBeTruthy(); }); -test.skip('getByText works properly with custom text container', () => { +test('getByText works properly with custom text container', () => { function MyText({ children }: ChildrenProps) { return {children}; }