Plato on Github
Report Home
dojo/tests/unit/fx/easing.js
Maintainability
77.60
Lines of code
23
Difficulty
7.33
Estimated Errors
0.09
Function weight
By Complexity
By SLOC
define([ 'intern!object', 'intern/chai!assert', '../../../fx/easing' ], function (registerSuite, assert, easing) { registerSuite({ name: 'dojo/fx/easing', 'module': { 'full of functions': function () { for(var i in easing){ assert.isFunction(easing[i]); } } }, 'performs some calculation': function () { for(var i in easing){ assert.isFalse(isNaN(easing[i](0.5))); } } }); });