15 lines
		
	
	
		
			291 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			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;
 | 
						|
}); |