wrote QueryUpdate and ApplyUpdate tests

This commit is contained in:
kg422
2015-08-21 17:09:29 -07:00
parent 15c9d93374
commit 0adb38e082
39 changed files with 1204 additions and 207 deletions

17
CodePush.android.js Normal file
View File

@@ -0,0 +1,17 @@
/**
* Stub of UpdateManager for Android.
*
* @providesModule UpdateManager
* @flow
*/
'use strict';
var warning = require('warning');
var CodePush = {
test: function() {
warning("Not yet implemented for Android.");
}
};
module.exports = CodePush;