We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c078c5 commit 868ba0aCopy full SHA for 868ba0a
tests/project.xml
@@ -12,4 +12,6 @@
12
<haxelib name="hamcrest"/>
13
14
<assets path="fixtures" embed="false"/>
15
+
16
+ <template path="templates" if="html5"/>
17
</project>
tests/templates/html5/template/index.html
@@ -0,0 +1,16 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>::APP_TITLE::</title>
6
+ <script type="text/javascript" src="./::APP_FILE::.js"></script>
7
+ </head>
8
+ <body>
9
+ <noscript
10
+ >Please enable JavaScript in your web browser to run tests.</noscript
11
+ >
+ <script type="text/javascript">
+ lime.$scripts["::APP_FILE::"]();
+ </script>
+ </body>
+</html>
0 commit comments