From fafae51923a519da2956d1334b6d637edb5cd6f5 Mon Sep 17 00:00:00 2001 From: Marcus Date: Wed, 24 Feb 2021 15:36:17 +0800 Subject: [PATCH] test(cheerio): Fix typos in test names (#1748) --- test/cheerio.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cheerio.js b/test/cheerio.js index 9a7dab0ab4..337b326523 100644 --- a/test/cheerio.js +++ b/test/cheerio.js @@ -15,7 +15,7 @@ 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); }); @@ -23,7 +23,7 @@ describe('cheerio', function () { expect(cheerio(undefined)).toHaveLength(0); }); - it('cheerio(null) should be empty', function () { + it("cheerio('') should be empty", function () { expect(cheerio('')).toHaveLength(0); });