witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/static/js/test/Test_Luminotes.html

31 lines
949 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Luminotes Test Suite</title>
<script language="JavaScript" type="text/javascript" src="../../jsunit/app/jsUnitCore.js"></script>
<script language="JavaScript" type="text/javascript">
function mainSuite() {
var result = new top.jsUnitTestSuite();
result.addTestPage("../js/test/Test_wiki.html");
result.addTestPage("../js/test/Test_editor.html");
return result;
}
function suite() {
var newsuite = new top.jsUnitTestSuite();
newsuite.addTestSuite(mainSuite());
return newsuite;
}
</script>
</head>
<body>
<h1>Luminotes Test Suite</h1>
<p>This page contains a suite of tests for testing Luminotes.</p>
</body>
</html>