dojo
Version:
Dojo core is a powerful, lightweight library that makes common tasks quicker and easier. Animate elements, manipulate the DOM, and query with easy CSS syntax, all without sacrificing performance.
22 lines (18 loc) • 301 B
JavaScript
define([
'intern!object',
'intern/chai!assert',
'../../../_base/browser',
'../../../ready'
], function (
registerSuite,
assert,
browser,
ready
) {
registerSuite({
name: 'dojo/_base/browser',
'is a dojo/ready function': function () {
assert.strictEqual(ready, browser);
}
});
});