You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
| /*
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Lesser General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public License
 | |
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| mocha.setup("bdd");
 | |
| window.assert = chai.assert;
 | |
| 
 | |
| (function() {
 | |
|   var OriginalReporter = mocha._reporter;
 | |
| 
 | |
|   var SauceReporter = function(runner) {
 | |
|     var failedTests = [];
 | |
| 
 | |
|     runner.on('end', function() {
 | |
|       window.mochaResults = runner.stats;
 | |
|       window.mochaResults.reports = failedTests;
 | |
|     });
 | |
| 
 | |
|     runner.on('fail', function(test, err) {
 | |
|       var flattenTitles = function(test) {
 | |
|         var titles = [];
 | |
|         while (test.parent.title) {
 | |
|           titles.push(test.parent.title);
 | |
|           test = test.parent;
 | |
|         }
 | |
|         return titles.reverse();
 | |
|       };
 | |
|       failedTests.push({
 | |
|         name: test.title,
 | |
|         result: false,
 | |
|         message: err.message,
 | |
|         stack: err.stack,
 | |
|         titles: flattenTitles(test)
 | |
|       });
 | |
|     });
 | |
| 
 | |
|     new OriginalReporter(runner);
 | |
|   };
 | |
| 
 | |
|   SauceReporter.prototype = OriginalReporter.prototype;
 | |
| 
 | |
|   mocha.reporter(SauceReporter);
 | |
| }());
 | |
| 
 | |
| /*
 | |
|  * global helpers for tests
 | |
|  */
 | |
| function assertEqualArrayBuffers(ab1, ab2) {
 | |
|   assert.deepEqual(new Uint8Array(ab1), new Uint8Array(ab2));
 | |
| };
 | |
| 
 | |
| function hexToArrayBuffer(str) {
 | |
|   var ret = new ArrayBuffer(str.length / 2);
 | |
|   var array = new Uint8Array(ret);
 | |
|   for (var i = 0; i < str.length/2; i++)
 | |
|     array[i] = parseInt(str.substr(i*2, 2), 16);
 | |
|   return ret;
 | |
| };
 |