]> git.parisson.com Git - pdf.js.git/commitdiff
Remove unit_test.html.
authorKalervo Kujala <kkujala@com>
Mon, 12 Dec 2011 20:31:10 +0000 (22:31 +0200)
committerKalervo Kujala <kkujala@com>
Mon, 12 Dec 2011 20:31:10 +0000 (22:31 +0200)
JsTestDriver has made it obsolete. Also add explicitly the used config to
the Makefile.

test/unit/Makefile
test/unit/unit_test.html [deleted file]

index 5a11568c383a8d0f7037d903098ce891454a271d..19a0724810bd124ea4d46d75027bf2a055355d88 100644 (file)
@@ -11,6 +11,7 @@ PROG=java \
 -Xms512m \
 -Xmx1024m \
 -jar ../../external/jsTestDriver/JsTestDriver-1.3.3d.jar \
+--config ./jsTestDriver.conf \
 --reset \
 --port 4224 \
 --browser $(BROWSERS) \
diff --git a/test/unit/unit_test.html b/test/unit/unit_test.html
deleted file mode 100644 (file)
index 1fc28ef..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <title>pdf.js unit test</title>
-
-  <link rel="shortcut icon" type="image/png" href="../../external/jasmine/jasmine_favicon.png">
-  <link rel="stylesheet" type="text/css" href="../../external/jasmine/jasmine.css">
-
-  <script type="text/javascript" src="../../external/jasmine/jasmine.js"></script>
-  <script type="text/javascript" src="../../external/jasmine/jasmine-html.js"></script>
-
-  <!-- include spec files here... -->
-  <script type="text/javascript" src="obj_spec.js"></script>
-
-  <!-- include source files here... -->
-  <script type="text/javascript" src="../../src/obj.js"></script>
-
-  <script type="text/javascript">
-    'use strict';
-
-    (function pdfJsUnitTest() {
-      var jasmineEnv = jasmine.getEnv();
-      jasmineEnv.updateInterval = 1000;
-
-      var trivialReporter = new jasmine.TrivialReporter();
-
-      jasmineEnv.addReporter(trivialReporter);
-
-      jasmineEnv.specFilter = function pdfJsUnitTestSpecFilter(spec) {
-        return trivialReporter.specFilter(spec);
-      };
-
-      var currentWindowOnload = window.onload;
-
-      window.onload = function pdfJsUnitTestOnload() {
-        if (currentWindowOnload) {
-          currentWindowOnload();
-        }
-        execJasmine();
-      };
-
-      function execJasmine() {
-        jasmineEnv.execute();
-      }
-    })();
-  </script>
-</head>
-<body>
-</body>
-</html>
-