blob: f44fcb38d96cab15ffd125b13e2e9366320929d0 [file] [log] [blame]
describe('Platform (cordova)', function () {
it("should exist", function() {
expect(cordova).toBeDefined();
});
it("exec method should exist", function() {
expect(cordova.exec).toBeDefined();
expect(typeof cordova.exec).toBe('function');
});
});