Skip to content

Commit 980b3df

Browse files
chore: reenable skipped byText tests (#1017)
1 parent 9f3b31d commit 980b3df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/queries/__tests__/text.test.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ describe('findBy options deprecations', () => {
149149
}, 20000);
150150
});
151151

152-
test.skip('getByText works properly with custom text component', () => {
152+
test('getByText works properly with custom text component', () => {
153153
function BoldText({ children }: ChildrenProps) {
154154
return <Text>{children}</Text>;
155155
}
@@ -163,7 +163,7 @@ test.skip('getByText works properly with custom text component', () => {
163163
).toBeTruthy();
164164
});
165165

166-
test.skip('getByText works properly with custom text container', () => {
166+
test('getByText works properly with custom text container', () => {
167167
function MyText({ children }: ChildrenProps) {
168168
return <Text>{children}</Text>;
169169
}

0 commit comments

Comments
 (0)