Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6056 efrain 1
/*global test, equal, module, ok*/
2
(function(global, $, undefined) {
3
"use strict";
4
 
5
module("browserify");
6
 
7
var isIE8 = window.attachEvent && !window.addEventListener;
8
 
9
if (!isIE8) {
10
 
11
test("browserify tests all run", function() {
12
	equal(JSON.stringify(browserify.done),
13
	'{"one":true,"two":true,"three":true,"twelve":true,"html":true,"htm":true}',
14
	"Browserify tests succeeded");
15
});
16
}
17
})(this, this.jQuery);