From edf3114e476aef5da67ca76b4636ac3cfbcb26d8 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Nov 2023 17:20:35 -0600 Subject: Fixes 1731, compare URLs case-insensitive (#1980) --- jest/jestSetup.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'jest/jestSetup.js') diff --git a/jest/jestSetup.js b/jest/jestSetup.js index 5d6bd4f1f..d8cee9bfd 100644 --- a/jest/jestSetup.js +++ b/jest/jestSetup.js @@ -2,6 +2,9 @@ import {configure} from '@testing-library/react-native' import 'react-native-gesture-handler/jestSetup' +// IMPORTANT: this is what's used in the native runtime +import 'react-native-url-polyfill/auto' + configure({asyncUtilTimeout: 20000}) jest.mock('@react-native-async-storage/async-storage', () => -- cgit 1.4.1