Commit ac8ac59e authored by Arthur Verschaeve's avatar Arthur Verschaeve

Vanillajs: fix indentation in `SpecRunner.html`

parent f5a3695c
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<title>Jasmine Spec Runner</title> <title>Jasmine Spec Runner</title>
<link rel="stylesheet" href="../node_modules/jasmine/lib/jasmine-core/jasmine.css"> <link rel="stylesheet" href="../node_modules/jasmine/lib/jasmine-core/jasmine.css">
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
// Bootstrap app data // Bootstrap app data
window.app = {}; window.app = {};
</script> </script>
<script src="../js/helpers.js"></script> <script src="../js/helpers.js"></script>
<script src="../js/view.js"></script> <script src="../js/view.js"></script>
<script src="../js/controller.js"></script> <script src="../js/controller.js"></script>
...@@ -25,6 +26,7 @@ ...@@ -25,6 +26,7 @@
var htmlReporter = new jasmine.HtmlReporter(); var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter); jasmineEnv.addReporter(htmlReporter);
jasmineEnv.specFilter = function(spec) { jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec); return htmlReporter.specFilter(spec);
}; };
...@@ -39,7 +41,7 @@ ...@@ -39,7 +41,7 @@
}; };
})(); })();
</script> </script>
</head> </head>
<body> <body>
</body> </body>
</html> </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