added custom buffer drawing function functional tests. Added an index page with links to all of the KineticJS tests inside the tests directory

This commit is contained in:
Eric Rowell
2012-11-14 22:14:15 -08:00
parent 9f80402dd1
commit 694ced6b7a
3 changed files with 146 additions and 18 deletions

View File

@@ -16,7 +16,7 @@
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
//console.log(evt.clientX + ',' + evt.clientY);
console.log(evt.clientX + ',' + evt.clientY);
}, false);
};

12
tests/html/index.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE>
<html>
<body>
<h1>KineticJS Test Suite</h1>
<ul>
<li><a href="unitTests.html">Unit Tests</a></li>
<li><a href="functionalTests.html">Functional Tests</a></li>
<li><a href="manualTests.html">Manual Tests</a></li>
<li><a href="performanceTests.html">Performance Tests</a></li>
</ul>
</body>
</html>