web-apps/test/common.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

15 lines
291 B
JavaScript

/**
* common.js
*
* Created by Alexander Yuzhin on 5/7/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
// Include and setup all the stuff for testing
define([
'chai'
],function(chai) {
window.expect = chai.expect;
window.assert = chai.assert;
});