mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-14 01:54:45 +08:00
12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
var CodePushWrapper = require("../codePushWrapper.js");
|
|
|
|
module.exports = {
|
|
startTest: function(testApp) {
|
|
CodePushWrapper.checkForUpdate(testApp,
|
|
CodePushWrapper.download.bind(undefined, testApp, undefined, undefined));
|
|
},
|
|
|
|
getScenarioName: function() {
|
|
return "Download Update";
|
|
}
|
|
}; |