Plato on Github
Report Home
test/spec/events.js
Maintainability
155.41
Lines of code
15
Difficulty
3.33
Estimated Errors
0.07
Function weight
By Complexity
By SLOC
define('spec/events', ['lyria/events', 'eventmap'], function(Events, EventMap) { describe('lyria/events', function() { it('is an object', function() { expect(Events).to.be.a('object'); }); it('is an EventMap instance', function() { expect(Events).to.be.an.instanceOf(EventMap); }); }); });