mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-14 18:09:12 +08:00
12 lines
342 B
JavaScript
12 lines
342 B
JavaScript
var CodePushWrapper = require("../codePushWrapper.js");
|
|
import CodePush from "react-native-code-push";
|
|
|
|
module.exports = {
|
|
startTest: function(testApp) {
|
|
CodePushWrapper.checkAndInstall(testApp, undefined, undefined, CodePush.InstallMode.IMMEDIATE);
|
|
},
|
|
|
|
getScenarioName: function() {
|
|
return "Install";
|
|
}
|
|
}; |