Skip to content

Commit

Permalink
test(plugin-manifest-validator): update outdated expected result (#2786)
Browse files Browse the repository at this point in the history
  • Loading branch information
hung-cybo authored May 28, 2024
1 parent af3533b commit 1c945c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/plugin-manifest-validator/src/__tests__/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ describe("validator", () => {
it("valid", () => {
assert.deepStrictEqual(
validator(json({ $schema: "https://secure-url.com/schema.json" })),
{ valid: true, errors: null },
{ valid: true, errors: null, warnings: null },
);
assert.deepStrictEqual(
validator(json({ $schema: "http://unsecure-url.com/schema.json" })),
{ valid: true, errors: null },
{ valid: true, errors: null, warnings: null },
);
});

Expand All @@ -67,6 +67,7 @@ describe("validator", () => {
schemaPath: "#/properties/%24schema/format",
},
],
warnings: null,
},
);
});
Expand Down

0 comments on commit 1c945c5

Please sign in to comment.