Added end to end test suite and test for issue #99

This commit is contained in:
Sergey Kirillov 2014-05-28 22:23:18 +03:00
parent 9cd7d280dc
commit e9e6082aae
6 changed files with 2520 additions and 1 deletions

17
tests/e2e/test.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Basic Test Suite</title>
<!-- Load local QUnit. -->
<link rel="stylesheet" href="libs/qunit.css" media="screen">
<script src="libs/qunit.js"></script>
<!-- Load local lib and tests. -->
<script src="../../mithril.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="dummy"></div>
</body>
<script src="tests.js"></script>
</html>