14 lines
278 B
JavaScript
Executable File
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);
|
|
}));
|
|
});
|