From 357db466f6ad6d5d7f8dfdf2836ae6ffc037e430 Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Sat, 25 Jan 2025 14:38:57 -0800 Subject: [PATCH] add tests on lint-html test helper --- test/lint-html.test.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/lint-html.test.js diff --git a/test/lint-html.test.js b/test/lint-html.test.js new file mode 100644 index 0000000..123072e --- /dev/null +++ b/test/lint-html.test.js @@ -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 = ` + + Test Page + + + + `; + await htmlLint(html); + }); + it('does not validate invalid html', async function () { + const html = `Bad Page
`; + assert.rejects(htmlLint(html)); + }); + }); // htmlLint + +}); // LintHTML \ No newline at end of file -- 2.49.0