summaryrefslogtreecommitdiffstats
path: root/tests/score-leet-matching.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/score-leet-matching.html')
-rw-r--r--tests/score-leet-matching.html47
1 files changed, 0 insertions, 47 deletions
diff --git a/tests/score-leet-matching.html b/tests/score-leet-matching.html
deleted file mode 100644
index 1331830..0000000
--- a/tests/score-leet-matching.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Jasmine Spec Runner</title>
-
- <link rel="shortcut icon" type="image/png" href="lib/jasmine-1.3.1/jasmine_favicon.png">
- <link rel="stylesheet" type="text/css" href="lib/jasmine-1.3.1/jasmine.css">
- <script type="text/javascript" src="lib/jasmine-1.3.1/jasmine.js"></script>
- <script type="text/javascript" src="lib/jasmine-1.3.1/jasmine-html.js"></script>
-
- <!-- include source files here... -->
- <script type="text/javascript" src="../js/score.js"></script>
-
- <!-- include spec files here... -->
- <script type="text/javascript" src="score-leet-matching.js"></script>
-
- <script type="text/javascript">
- (function() {
- var jasmineEnv = jasmine.getEnv();
- jasmineEnv.updateInterval = 1000;
-
- var htmlReporter = new jasmine.HtmlReporter();
-
- jasmineEnv.addReporter(htmlReporter);
-
- jasmineEnv.specFilter = function(spec) {
- return htmlReporter.specFilter(spec);
- };
-
- var currentWindowOnload = window.onload;
-
- window.onload = function() {
- if (currentWindowOnload) {
- currentWindowOnload();
- }
- execJasmine();
- };
-
- function execJasmine() {
- jasmineEnv.execute();
- }
-
- })();
- </script>
- </head>
- <body></body>
-</html>