--- /dev/null
+'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