chore(tests): remove redundant file

Closes #9706
This commit is contained in:
Shahar Talmi
2014-10-21 00:51:50 +03:00
committed by Caitlin Potter
parent 7574dd25d9
commit 42f7c80bb6

View File

@@ -1,23 +0,0 @@
<!DOCTYPE html>
{% if eq(test.ngAppTag, "html") %}
<html ng-app="{{ test.ngApp }}">
{% else %}
<html>
{% endif %}
<head>
{% if scripts.jQuery %}
<script src="{{ scripts.jQuery }}"></script>
{% endif %}
{% for script in test.scripts %}
<script src="{{ test.scripts[script] }}"></script>
{% endfor %}
{{ test.head }}
</head>
{% if test.ngAppTag === "body" %}
<body ng-app="{{ test.ngApp }}">
{% else %}
<body>
{% endif %}
{% test.body %}
</body>
</html>