UNPKG

joola.io.engine

Version:
26 lines (22 loc) 544 B
/** * 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+> */ "use strict"; 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; }); });