mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-15 10:27:59 +08:00
12 lines
345 B
JavaScript
12 lines
345 B
JavaScript
var CodePushWrapper = require("../codePushWrapper.js");
|
|
import CodePush from "react-native-code-push";
|
|
|
|
module.exports = {
|
|
startTest: function(testApp) {
|
|
CodePushWrapper.sync(testApp, undefined, undefined, { installMode: CodePush.InstallMode.IMMEDIATE });
|
|
},
|
|
|
|
getScenarioName: function() {
|
|
return "Sync";
|
|
}
|
|
}; |