mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
80324fcb23
UI unit tests were broken since main RCUE work. This patch fixes them all except aci, which will be fixed along with update of aci UI. Reviewed-By: Adam Misnyovszki <amisnyov@redhat.com> Reviewed-By: Petr Viktorin <pviktori@redhat.com>
25 lines
868 B
HTML
25 lines
868 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Entity Test Suite</title>
|
|
<link rel="stylesheet" href="qunit.css" type="text/css" media="screen">
|
|
<script type="text/javascript" src="qunit.js"></script>
|
|
<script type="text/javascript" src="../js/libs/jquery.js"></script>
|
|
<script type="text/javascript" src="../js/libs/jquery.ordered-map.js"></script>
|
|
<script type="text/javascript" src="config.js"></script>
|
|
<script type="text/javascript" src="../js/dojo/dojo.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
require(['test/entity_tests'], function(tests){ tests() });
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 id="qunit-header">Entity Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<div id="qunit-testrunner-toolbar"></div>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests"></ol>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|