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