Plato on Github
Report Home
test/spec/video.js
Maintainability
146.73
Lines of code
18
Difficulty
7.00
Estimated Errors
0.10
Function weight
By Complexity
By SLOC
define('spec/video', ['lyria/video'], function(Video) { describe('lyria/video', function() { var video = new Video(); it('is a function', function() { expect(Video).to.be.a('function'); }); it('can be instantiated', function() { expect(video).to.be.a('object'); expect(video).to.be.an.instanceOf(Video); }); }); });