2012-10-03 16:37:48 +00:00
|
|
|
$(function(){
|
|
|
|
//allow cross iframe access
|
|
|
|
document.domain = document.domain;
|
2012-10-01 23:35:43 +00:00
|
|
|
|
2012-10-03 16:37:48 +00:00
|
|
|
//initalize the test helper
|
2012-10-06 19:29:37 +00:00
|
|
|
helper.init();
|
2012-10-03 16:37:48 +00:00
|
|
|
|
|
|
|
//configure and start the test framework
|
2012-10-06 19:29:37 +00:00
|
|
|
mocha.timeout(5000);
|
2012-10-03 16:37:48 +00:00
|
|
|
mocha.ignoreLeaks();
|
|
|
|
mocha.run();
|
|
|
|
});
|