spec.js 278 B

1234567891011121314
  1. 'use strict';
  2. describe('ngStorage', function () {
  3. var expect = chai.expect;
  4. beforeEach(module('ngStorage'));
  5. it('should contain a $localStorage service', inject(function(
  6. $localStorage
  7. ){
  8. expect($localStorage).not.to.equal(null);
  9. }));
  10. });