Skip to content

Commit

Permalink
Fix windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoTheThird committed Mar 6, 2021
1 parent e08a39e commit ea39581
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/core/plugins/core/plugin.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,18 @@ describe("core plugin", () => {
[
{
checksum: { algorithm: "sha256", sum: "b" },
path: "a/yggdrasil/firmware/c",
path: expect.stringMatching(/a.yggdrasil.firmware.c/),
url: "a/c"
},
{ path: "a/yggdrasil/firmware/b", url: "a/b" },
{ name: "d", path: "a/yggdrasil/firmware/d", url: "a/c" }
{
path: expect.stringMatching(/a.yggdrasil.firmware.b/),
url: "a/b"
},
{
name: "d",
path: expect.stringMatching(/a.yggdrasil.firmware.d/),
url: "a/c"
}
],
expect.any(Function),
expect.any(Function),
Expand Down

0 comments on commit ea39581

Please sign in to comment.