betsol-ng-entity-list
Version:
Automatic entity lists for Angular.js
24 lines (16 loc) • 427 B
JavaScript
describe('Module', function () {
//==============//
// INITIALIZING //
//==============//
beforeEach(module('betsol.entityList'));
var EntityListConfig;
beforeEach(inject(function (_EntityListConfig_) {
EntityListConfig = _EntityListConfig_;
}));
//=========//
// TESTING //
//=========//
it('service should be present', function () {
expect(EntityListConfig).to.be.an('object');
});
});