apollodec/Apollo/bower_components/ngstorage/test/spec.js
venbatechnologies@gmail.com d06b1c0cba status file
2017-12-07 11:31:25 +05:30

14 lines
278 B
JavaScript
Executable File

'use strict';
describe('ngStorage', function () {
var expect = chai.expect;
beforeEach(module('ngStorage'));
it('should contain a $localStorage service', inject(function(
$localStorage
){
expect($localStorage).not.to.equal(null);
}));
});