mammoth-style
Version:
Convert Word documents (.docx files) to HTML (with style)
21 lines (15 loc) • 772 B
JavaScript
var assert = require("assert");
var test = require("./test")(module);
var htmlPaths = require("../lib/html-paths");
test("element can match multiple tag names", function() {
var pathPart = htmlPaths.element(["ul", "ol"]);
assert.ok(pathPart.matchesElement({tagName: "ul"}));
assert.ok(pathPart.matchesElement({tagName: "ol"}));
assert.ok(!pathPart.matchesElement({tagName: "p"}));
});
test("element matches if attributes are the same", function() {
var pathPart = htmlPaths.element(["p"], {"class": "tip"});
assert.ok(!pathPart.matchesElement({tagName: "p"}));
assert.ok(!pathPart.matchesElement({tagName: "p", attributes: {"class": "tip help"}}));
assert.ok(pathPart.matchesElement({tagName: "p", attributes: {"class": "tip"}}));
});