added support for generation of QUnit unit tests from Kotlin JUnit test cases

This commit is contained in:
James Strachan
2012-06-01 15:25:35 +01:00
parent 87b16b6a1f
commit 9f0fcc280b
19 changed files with 3963 additions and 33 deletions
+9
View File
@@ -0,0 +1,9 @@
// load testswarm agent
(function() {
var url = window.location.search;
url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) );
if ( !url || url.indexOf("http") !== 0 ) {
return;
}
document.write("<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + (new Date).getTime() + "'></scr" + "ipt>");
})();