We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65447ec + 2db9bc0 commit 5d97f48Copy full SHA for 5d97f48
1 file changed
test/issue219.js
@@ -20,7 +20,7 @@ tape('Basic Check: pass jsdom object to output', function(t) {
20
}, function(data) {
21
var window = new JSDOM().window;
22
t.ok(data.htmlNode instanceof window.HTMLElement, 'htmlNode is an HTMLElement');
23
- t.ok(data.svgNode instanceof window.SVGElement, 'svgNode is an HTMLElement');
24
- t.ok(data.mmlNode instanceof window.Element, 'mmlNode is an HTMLElement');
+ t.ok(data.svgNode instanceof window.SVGElement, 'svgNode is an SVGElement');
+ t.ok(data.mmlNode instanceof window.Element, 'mmlNode is an Element');
25
});
26
0 commit comments