blob: 9d26c414af4d2fb7f1eb6ad80ce20a52f058fe33 [file] [log] [blame]
describe("camera", function () {
var camera = require('cordova/plugin/Camera'),
constants = require('cordova/plugin/CameraConstants');
describe("constants", function() {
it("should be defined on the base camera plugin", function() {
for (var type in constants) {
expect(camera[type]).toBe(constants[type]);
}
});
});
});