cc.fovea.cordova.purchase
Version:
Cordova Purchase plugin for iOS, Android, Windows (AppStore, Play, UWP)
24 lines (18 loc) • 494 B
JavaScript
/*eslint-env mocha */
/*global describe, it, before, beforeEach, after, afterEach */
var assert = require("assert");
var store = require("../tmp/store-test");
global.store = store;
global.document = {
addEventListener: function(/*event, callback*/) {
}
};
global.localStorage = {};
require("../tmp/plugin-adapter");
describe('Android', function(){
describe('#init', function(){
it('should', function() {
assert.ok(true);
});
});
});