Commit ac8ac59e authored by Arthur Verschaeve's avatar Arthur Verschaeve

Vanillajs: fix indentation in `SpecRunner.html`

parent f5a3695c
<!doctype html>
<html>
<head>
<head>
<title>Jasmine Spec Runner</title>
<link rel="stylesheet" href="../node_modules/jasmine/lib/jasmine-core/jasmine.css">
......@@ -15,6 +15,7 @@
// Bootstrap app data
window.app = {};
</script>
<script src="../js/helpers.js"></script>
<script src="../js/view.js"></script>
<script src="../js/controller.js"></script>
......@@ -25,6 +26,7 @@
var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter);
jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec);
};
......@@ -39,7 +41,7 @@
};
})();
</script>
</head>
<body>
</body>
</head>
<body>
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment