Skip to content

Commit

Permalink
let's try running the tests without retry
Browse files Browse the repository at this point in the history
retry-cli does a weird thing where it passes errors and booleans to `process.exit()` which is no longer allowed in node 22, because it was never the actual API
  • Loading branch information
catdad committed Jan 19, 2025
1 parent f8635fc commit 3600241
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"lint": "eslint bin src",
"test": "mocha --timeout 20000 --retries=1",
"ciinspect": "xvfb-maybe electron --version",
"citest": "xvfb-maybe retry -n 3 -- npm test",
"citest": "xvfb-maybe npm test",
"citest-retry": "xvfb-maybe retry -n 3 -- npm test",
"fixture": "cd fixtures && node ../bin/cli.js ."
},
"repository": {
Expand Down

0 comments on commit 3600241

Please sign in to comment.