JS tests: fixed waiting to finish qunit tests in SeleniumTest.

This commit is contained in:
Zalim Bashorov
2014-10-09 19:50:33 +04:00
parent 2d634931f6
commit 49e2262ca7
4 changed files with 23 additions and 30 deletions
@@ -16,5 +16,12 @@
<body>
<div id="qunit"></div>
<div id="qunit-fixture">test markup</div>
<script>
document.getElementById("qunit").className = "running";
QUnit.done(function () {
document.getElementById("qunit").className = "done"
});
</script>
</body>
</html>