Skip to content

Commit

Permalink
Disable worker-threads test on macos
Browse files Browse the repository at this point in the history
See #365.
  • Loading branch information
orgads committed Jan 17, 2024
1 parent 90a4746 commit 8b12246
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/workers-threads.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
if (process.versions.modules < 72) {
// This test is flaky on macos. Disable it until we can figure out why.
if (process.versions.modules < 72 || process.platform === 'darwin') {
console.log('pass');
process.exit();
}
Expand Down

0 comments on commit 8b12246

Please sign in to comment.