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