Refactoring

This commit is contained in:
OVSharova
2021-09-15 03:40:16 +03:00
parent 78b4d54c4f
commit 0de7742cfa
40 changed files with 218 additions and 247 deletions

15
test/unit-tests/common.js Normal file
View File

@ -0,0 +1,15 @@
/**
* 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;
});