We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e233ed0 commit 1f530b0Copy full SHA for 1f530b0
rn-test.config.js
@@ -5,7 +5,8 @@ module.exports = {
5
runner: 'mocha',
6
modules: [
7
'react-native-url-polyfill',
8
- 'web-streams-polyfill'
+ 'web-streams-polyfill',
9
+ 'text-encoding'
10
],
11
patches: [{
12
path: require.resolve('react-native-polyfill-globals/patches/react-native+0.63.3.patch')
rn-test.require.js
@@ -2,6 +2,8 @@
2
3
const { polyfill: polyfillReadableStream } = require('react-native-polyfill-globals/src/readable-stream')
4
const { polyfill: polyfillURL } = require('react-native-polyfill-globals/src/url')
+const { polyfill: polyfillEncoding } = require('react-native-polyfill-globals/src/encoding')
polyfillURL()
polyfillReadableStream()
+polyfillEncoding()
0 commit comments