changed integration tests to visual tests

This commit is contained in:
Eric Rowell
2013-06-08 15:21:31 -07:00
parent bffc886b79
commit 0983531197
3 changed files with 1879 additions and 2 deletions

View File

@@ -6,9 +6,9 @@
<ul> <ul>
<li><a href="unitTests.html">Unit Tests (724)</a></li> <li><a href="unitTests.html">Unit Tests (724)</a></li>
<li><a href="functionalTests.html">Functional Tests (171)</a></li> <li><a href="functionalTests.html">Functional Tests (171)</a></li>
<li><a href="integrationTests.html">Integration Tests (46)</a></li> <li><a href="visualTests.html">Visual Tests (46)</a></li>
<li><a href="manualTests.html">Manual Tests</a></li> <li><a href="manualTests.html">Manual Tests</a></li>
<li><a href="performanceTests.html">Performance Tests</a></li> <li><a href="visualTests.html">Performance Tests</a></li>
<li><a href="special/index.html">Special Tests</a></li> <li><a href="special/index.html">Special Tests</a></li>
</ul> </ul>
</body> </body>

View File

@@ -0,0 +1,26 @@
<!DOCTYPE HTML>
<html>
<head>
<style>
/* overwrite CSS */
</style>
<link rel="stylesheet" type="text/css"href="../base.css">
<script src="../../dist/kinetic-v0.0.0.js"></script>
<script src="../assets/dataUrls.js"></script>
<script src="../js/Test.js"></script>
<script src="../js/visualTests.js"></script>
<script>
window.onload = function() {
var test = new Test();
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
//console.log(evt.clientX + ',' + evt.clientY);
}, false);
};
</script>
</head>
<body></body>
</html>

1851
tests/js/visualTests.js Normal file

File diff suppressed because it is too large Load Diff