Neues Initialrelease mit IonicMaterial
This commit is contained in:
20
www/lib/ngCordova/test/mocks/capture.spec.js
Normal file
20
www/lib/ngCordova/test/mocks/capture.spec.js
Normal file
@@ -0,0 +1,20 @@
|
||||
describe('ngCordovaMocks', function() {
|
||||
beforeEach(function() {
|
||||
module('ngCordovaMocks');
|
||||
});
|
||||
|
||||
describe('cordovaCapture', function () {
|
||||
var $cordovaCapture = null;
|
||||
var $timeout = null;
|
||||
var $rootScope = null;
|
||||
|
||||
beforeEach(inject(function (_$timeout_, _$rootScope_, _$cordovaCapture_) {
|
||||
$cordovaCapture = _$cordovaCapture_;
|
||||
$timeout = _$timeout_;
|
||||
$rootScope = _$rootScope_;
|
||||
}));
|
||||
|
||||
it('should do something', function() {
|
||||
});
|
||||
});
|
||||
})
|
||||
Reference in New Issue
Block a user