-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstandard_test_template.html
46 lines (37 loc) · 1.55 KB
/
standard_test_template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<!--
Copyright 2023 Canonical Ltd. This software is licensed under the
GNU Affero General Public License version 3 (see the file LICENSE).
-->
<html>
<head>
<title>$LIBRARY Tests</title>
<!-- YUI and test setup -->
<script type="text/javascript"
src="../../../../../../build/js/yui/yui/yui.js">
</script>
<link rel="stylesheet"
href="../../../../../../build/js/yui/console/assets/console-core.css" />
<link rel="stylesheet"
href="../../../../../../build/js/yui/test-console/assets/skins/sam/test-console.css" />
<script type="text/javascript"
src="../../../../../../build/js/lp/app/testing/testrunner.js"></script>
<script type="text/javascript"
src="../../../../../build/js/lp/app/testing/helpers.js"></script>
<link rel="stylesheet" href="../../../../app/javascript/testing/test.css" />
<!-- Dependencies -->
<!-- <script type="text/javascript" src="../../../../../../build/js/lp/..."></script> -->
<!-- The module under test. -->
<script type="text/javascript" src="../$LIBRARY.js"></script>
<!-- Placeholder for any css asset for this module. -->
<!-- <link rel="stylesheet" href="../assets/$LIBRARY-core.css" /> -->
<!-- The test suite -->
<script type="text/javascript" src="test_$LIBRARY.js"></script>
</head>
<body class="yui3-skin-sam">
<ul id="suites">
<!-- <li>lp.large_indicator.test</li> -->
<li>lp.$LIBRARY.test</li>
</ul>
</body>
</html>