Skip to content

Commit

Permalink
Ignore visual checks in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso committed Mar 31, 2024
1 parent b9c3a76 commit 032572f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ function runAppdmg (opts, verify, cb) {
return cb(err)
}

// const expected = path.join(__dirname, verify.visually)
// visuallyVerifyImage(opts.target, verify.title, expected, cb)
if (!process.env.CI) {
const expected = path.join(__dirname, verify.visually)
visuallyVerifyImage(opts.target, verify.title, expected, cb)
}
})
}

Expand Down

0 comments on commit 032572f

Please sign in to comment.