joola.io.engine
Version:
joola.io's Framework Engine
26 lines (22 loc) • 544 B
JavaScript
/**
* joola.io
*
* Copyright Joola Smart Solutions, Ltd. <info@joo.la>
*
* Licensed under GNU General Public License 3.0 or later.
* Some rights reserved. See LICENSE, AUTHORS.
*
* @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
*/
;
describe("globals", function () {
it("should have sinon defined", function () {
expect(sinon).to.be.ok;
});
it("should have expect defined", function () {
expect(expect).to.be.ok;
});
it("should have underscore defined", function () {
expect(_).to.be.ok;
});
});