mirror of https://github.com/webpack/webpack.git
Merge pull request #10554 from jamesgeorge007/rephrase-desc
chore: rephrase test descriptions
This commit is contained in:
commit
7405ab0d7d
|
|
@ -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)-/);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue