mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-16 02:44:33 +08:00
13 lines
322 B
JavaScript
13 lines
322 B
JavaScript
var CodePushWrapper = require("../codePushWrapper.js");
|
|
|
|
module.exports = {
|
|
startTest: function(testApp) {
|
|
testApp.readyAfterUpdate();
|
|
CodePushWrapper.sync(testApp);
|
|
CodePushWrapper.sync(testApp);
|
|
},
|
|
|
|
getScenarioName: function() {
|
|
return "Good Update (w/ Sync 2x)";
|
|
}
|
|
}; |