web-apps/test/unit-tests/common.js
2021-08-26 00:35:09 +03:00

15 lines
291 B
JavaScript

/**
* common.js
*
* Created by Alexander Yuzhin on 5/7/14
* Copyright (c) 2018 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;
});