add tests on lint-html test helper
authorJustin Wind <justin.wind+git@gmail.com>
Sat, 25 Jan 2025 22:38:57 +0000 (14:38 -0800)
committerJustin Wind <justin.wind+git@gmail.com>
Sat, 25 Jan 2025 22:38:57 +0000 (14:38 -0800)
test/lint-html.test.js [new file with mode: 0644]

diff --git a/test/lint-html.test.js b/test/lint-html.test.js
new file mode 100644 (file)
index 0000000..123072e
--- /dev/null
@@ -0,0 +1,32 @@
+'use strict';
+
+const assert = require('node:assert');
+const { HtmlValidate } = require('html-validate');
+const { makeHtmlLint } = require('./lint-html');
+const stubLogger = require('./stub-logger');
+
+describe('LintHTML', function () {
+  let htmlLint, htmlValidate;
+  beforeEach(function () {
+    htmlValidate = new HtmlValidate();
+    htmlLint = makeHtmlLint(stubLogger, htmlValidate);
+  });
+  describe('htmlLint', function () {
+    it('validates valid html', async function () {
+      this.slow(1000); // First invocation of htmlLint takes some time.
+      const html = `<html lang="en">
+  <head>
+    <title>Test Page</title>
+  </head>
+  <body>
+  </body>
+    </html>`;
+      await htmlLint(html);
+    });
+    it('does not validate invalid html', async function () {
+      const html = `<html><head><title>Bad Page</title></head><body><div></body></html>`;
+      assert.rejects(htmlLint(html));
+    });
+  }); // htmlLint
+
+}); // LintHTML
\ No newline at end of file