Skip to content

Commit a4c1057

Browse files
test(server): remove skipped test
1 parent 61075a1 commit a4c1057

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

test/server/index.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,6 @@ describe('server parser', () => {
4848
expect(parserEndSpy.called).to.equal(true);
4949
});
5050

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-
expect(DomHandlerSpy.callCount).to.equal(1);
56-
expect(ParserSpy.callCount).to.equal(2);
57-
});
58-
5951
it('passes options to `domhandler` and arguments to `htmlparser2/lib/Parser`', () => {
6052
const options = { decodeEntities: true };
6153
parser(html, options);

0 commit comments

Comments
 (0)