From e4300d308b0b17045030d47510abba6bb3c87ca0 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Sat, 14 Mar 2020 18:38:37 +0530 Subject: [PATCH] chore: rephrase test descriptions --- test/Dependencies.lint.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Dependencies.lint.js b/test/Dependencies.lint.js index f725b92ff..4723a8d00 100644 --- a/test/Dependencies.lint.js +++ b/test/Dependencies.lint.js @@ -15,10 +15,10 @@ describe("Dependencies", () => { for (const dep of Object.keys(content)) { describe(dep, () => { const info = content[dep]; - it("should resolve to a npm package", () => { + it("should resolve to an npm package", () => { expect(info.resolved).toMatch(/^https:\/\/registry\.yarnpkg\.com\//); }); - it("should have a integrity hash", () => { + it("should have an integrity hash", () => { expect(info.integrity).toMatch(/^(sha1|sha512)-/); }); });