You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
423 B
23 lines
423 B
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))); |
|
} |
|
} |
|
}); |
|
});
|
|
|