Skip to content

Commit

Permalink
Unreliable test needs to be skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Dec 20, 2024
1 parent 40702a5 commit c795801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ test("Keep a cache, don’t reuse with if the image changes, check promise equal
t.not(promise1, promise2);
});

let method = os.platform() === "win32" && process.env.GITHUB_ACTIONS ? test.failing : test;
let method = os.platform() === "win32" && process.env.GITHUB_ACTIONS ? test.skip : test;
method("Keep a cache, don’t reuse with if the image changes, check output", async t => {
let outputPathTemp = "./test/generated-modify2-bio.jpg";

Expand Down

0 comments on commit c795801

Please sign in to comment.