file no longer needed
authorWolfram Schneider <wosch@indexdata.dk>
Fri, 10 Jan 2014 17:24:27 +0000 (17:24 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Fri, 10 Jan 2014 17:24:27 +0000 (17:24 +0000)
mkws-index-jsdom.spec.js does most of the tests already

test/spec/mkws-index-simple.spec.js [deleted file]

diff --git a/test/spec/mkws-index-simple.spec.js b/test/spec/mkws-index-simple.spec.js
deleted file mode 100644 (file)
index b6a4c14..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/* Copyright (c) 2013 IndexData ApS. http://indexdata.com
- *
- * jQuery test with DOM/windows object
- *
- */
-
-
-var fs = require("fs");
-var utils = require("./mkws_utils.js");
-
-/*
- * simple test with string matching of the HTML page
- *
- */
-
-function html_check(file, tags_array, ignore_doctype) {
-    var html = fs.readFileSync(file, "utf-8");
-    var tags = utils.flat_list(tags_array);
-
-    describe("language.html string test for " + file, function () {
-        it("html test", function () {
-            expect(html).toBeDefined();
-
-            // forgotten doctype declaration
-            if (!ignore_doctype) {
-                expect(html).toMatch(/<html.*?>/);
-                expect(html).toMatch(/<\/html.*?>/);
-            }
-            expect(html).toMatch(/<head.*?>/);
-            expect(html).toMatch(/<body.*?>/);
-            expect(html).toMatch(/<\/head.*?>/);
-            expect(html).toMatch(/<\/body.*?>/);
-
-            expect(html).toMatch(/<meta .*?charset=utf-8/i);
-            expect(html).toMatch(/<title>.+<\/title>/i);
-            expect(html).toMatch(/<link .*?type="text\/css" href=".*?\/?mkws.css"/);
-
-
-            for (var i = 0, data = ""; i < tags.length; i++) {
-                data = '<div id="' + tags[i] + '">';
-                // console.log(data)
-                expect(html).toMatch(data);
-            }
-        });
-    });
-}
-
-html_check('../examples/htdocs/language.html', [utils.tags.required, utils.tags.optional, utils.tags.optional2]);
-html_check('../examples/htdocs/mobile.html', [utils.tags.required, utils.tags.optional]);