Plato on Github
Report Home
test/spec/prefab.js
Maintainability
150.23
Lines of code
17
Difficulty
6.34
Estimated Errors
0.08
Function weight
By Complexity
By SLOC
define('spec/prefab', ['lyria/prefab'], function(Prefab) { describe('lyria/prefab', function() { var prefab = new Prefab(); it('is a function', function() { expect(Prefab).to.be.a('function'); }); it('can be instantiated', function() { expect(prefab).to.be.a('object'); }); }); });