Skip to content

Commit

Permalink
test(cheerio): Fix typos in test names (#1748)
Browse files Browse the repository at this point in the history
  • Loading branch information
atimidguy committed Feb 24, 2021
1 parent 2e68d65 commit fafae51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cheerio.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ describe('cheerio', function () {
expect(cheerio.version).toMatch(/\d+\.\d+\.\d+/);
});

it('cheerio(null) should return be empty', function () {
it('cheerio(null) should be empty', function () {
expect(cheerio(null)).toHaveLength(0);
});

it('cheerio(undefined) should be empty', function () {
expect(cheerio(undefined)).toHaveLength(0);
});

it('cheerio(null) should be empty', function () {
it("cheerio('') should be empty", function () {
expect(cheerio('')).toHaveLength(0);
});

Expand Down

0 comments on commit fafae51

Please sign in to comment.