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};
}