mirror of
https://github.com/status-im/react-native-webview.git
synced 2025-02-22 08:48:39 +00:00
fixes #466 #194 * feat(android): fix overflow issues and match iOS default render error and loading behaviour * Use babel preset typescript through react-native instead of ts-jest * Update yarn.lock * Update README.md
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
module.exports = function(api) {
|
|
api && api.cache(false);
|
|
return {
|
|
env: {
|
|
test: {
|
|
presets: ['module:metro-react-native-babel-preset'],
|
|
},
|
|
},
|
|
};
|
|
};
|