Skip to content

Commit

Permalink
chore: remove atomic-sleep as dev dependency (nodejs#2648)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak committed Jan 27, 2024
1 parent ba70685 commit 6d089cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -103,7 +103,6 @@
"@sinonjs/fake-timers": "^11.1.0",
"@types/node": "^18.0.3",
"abort-controller": "^3.0.0",
"atomic-sleep": "^1.0.0",
"borp": "^0.5.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
Expand Down
4 changes: 2 additions & 2 deletions test/connect-timeout.js
Expand Up @@ -3,9 +3,9 @@
const { test } = require('tap')
const { Client, Pool, errors } = require('..')
const net = require('net')
const sleep = require('atomic-sleep')
const sleep = ms => Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, Number(ms))

test('priotorise socket errors over timeouts', (t) => {
test('prioritize socket errors over timeouts', (t) => {
t.plan(1)
const connectTimeout = 1000
const client = new Pool('http://foobar.bar:1234', { connectTimeout: 2 })
Expand Down

0 comments on commit 6d089cf

Please sign in to comment.