We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61075a1 commit a4c1057Copy full SHA for a4c1057
test/server/index.js
@@ -48,14 +48,6 @@ describe('server parser', () => {
48
expect(parserEndSpy.called).to.equal(true);
49
});
50
51
- it.skip('uses the cached instance of `domhandler` if options is undefined', () => {
52
- expect(DomHandlerSpy.callCount).to.equal(1);
53
- expect(ParserSpy.callCount).to.equal(1);
54
- parser(html);
55
56
- expect(ParserSpy.callCount).to.equal(2);
57
- });
58
-
59
it('passes options to `domhandler` and arguments to `htmlparser2/lib/Parser`', () => {
60
const options = { decodeEntities: true };
61
parser(html, options);
0 commit comments