UNPKG

576 BJavaScriptView Raw
1/**
2 * joola.io
3 *
4 * Copyright Joola Smart Solutions, Ltd. <info@joo.la>
5 *
6 * Licensed under GNU General Public License 3.0 or later.
7 * Some rights reserved. See LICENSE, AUTHORS.
8 *
9 * @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
10 */
11
12"use strict";
13
14var
15 path = require('path');
16
17global.sinon = require('sinon');
18global.should = require('should');
19global.assert = require('assert');
20global._ = require("underscore");
21
22var chai = require('chai');
23chai.use(require('sinon-chai'));
24global.expect = chai.expect;
25
26global.common = exports;
\No newline at end of file