This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (window.__REDUX_DEVTOOLS_EXTENSION__) { | |
const xhr = global.originalXMLHttpRequest ? | |
global.originalXMLHttpRequest : | |
global.XMLHttpRequest; | |
global.XMLHttpRequest = xhr; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias docker-switch='function _switch(){eval $(docker-machine env $1);echo "Switched to $1 machine"};_switch' | |
alias docker-bash='function _bash(){docker-compose run $1 bash };_bash' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
WallabyJS React Native Config | |
Works well with Jest + Enzyme | |
*/ | |
/* eslint-disable */ | |
module.exports = function (wallaby) { | |
return { | |
files: [ | |
'src/**/*.js', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Sample React Native App | |
* https://github.com/facebook/react-native | |
*/ | |
import React from 'react'; | |
import { AppRegistry } from 'react-native'; | |
import Raven from 'raven-js'; | |
import ravenPluginReactNative from 'raven-js/plugins/react-native'; | |
import App from 'myapp/src/App'; |
NewerOlder