Files
react-native-code-push/Examples/CodePushDemoApp/CodePushDemoAppTests/InstallUpdateTests/resources/RollbackTestBundleV2.js
Geoffrey Goh bc52e8f0c5 add tests
2015-12-18 00:08:11 -08:00

27 lines
482 B
JavaScript

"use strict";
var React = require("react-native");
var CodePush = require("react-native-code-push");
var {
AppRegistry,
Text,
View,
} = React;
var RollbackTest = React.createClass({
componentDidMount() {
CodePush.restartApp();
},
render() {
return (
<View style={{backgroundColor: "white", padding: 40}}>
<Text>
Testing...
</Text>
</View>
);
}
});
AppRegistry.registerComponent("RollbackTest", () => RollbackTest);