another test case

This commit is contained in:
scottbommarito
2016-06-22 17:00:24 -07:00
parent d57278bcb0
commit 7e5ac6b7f8
2 changed files with 38 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
import CodePush from "react-native-code-push";
module.exports = {
startTest: function(testApp) {
CodePush.restartApp(true);
CodePushWrapper.checkAndInstall(testApp,
() => {
CodePush.restartApp(true);
}
);
},
getScenarioName: function() {
return "Restart2x";
}
};