jakubrohleder/angular-jsonapi

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

Summary

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

  describe('AngularJsonAPISchema', function() {

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

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