mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-11 08:04:23 +08:00
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
var CodePushWrapper = require("../codePushWrapper.js");
|
|
import CodePush from "react-native-code-push";
|
|
|
|
module.exports = {
|
|
startTest: function(testApp) {
|
|
testApp.readyAfterUpdate();
|
|
CodePush.notifyAppReady();
|
|
},
|
|
|
|
getScenarioName: function() {
|
|
return "Good Update";
|
|
}
|
|
}; |