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