jakubrohleder/angular-jsonapi

View on GitHub
src/collection/collection.factory.spec.js

Summary

Maintainability
A
1 hr
Test Coverage
/*jshint expr: true*/
(function() {
  'use strict';

  describe('AngularJsonAPICollection', function() {

    beforeEach(module('angular-jsonapi'));

    it('returns valid model', inject(function(AngularJsonAPICollection) {
      expect(AngularJsonAPICollection).toBeDefined();
    }));
  });
})();