Skip to content

Commit

Permalink
test(server): remove skipped test
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Nov 3, 2019
1 parent 61075a1 commit a4c1057
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions test/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,6 @@ describe('server parser', () => {
expect(parserEndSpy.called).to.equal(true);
});

it.skip('uses the cached instance of `domhandler` if options is undefined', () => {
expect(DomHandlerSpy.callCount).to.equal(1);
expect(ParserSpy.callCount).to.equal(1);
parser(html);
expect(DomHandlerSpy.callCount).to.equal(1);
expect(ParserSpy.callCount).to.equal(2);
});

it('passes options to `domhandler` and arguments to `htmlparser2/lib/Parser`', () => {
const options = { decodeEntities: true };
parser(html, options);
Expand Down

0 comments on commit a4c1057

Please sign in to comment.