Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: Updated flaky when test
  • Loading branch information
jsumners-nr committed Jun 4, 2024
commit 2cf11484c32bf7b6783e818255607e4b2877caad
5 changes: 2 additions & 3 deletions test/versioned/when/when.tap.js
Original file line number Diff line number Diff line change
Expand Up @@ -583,13 +583,12 @@ test('Promise#yield', function (t) {
})

test('Promise#delay', function (t) {
testPromiseInstanceMethod(t, 3, function (p, name) {
testPromiseInstanceMethod(t, 2, function (p, name) {
const start = Date.now()
return p.delay(100).then(function (x) {
const end = Date.now()
t.same(x, [1, 2, 3, name], name + 'should resolve with original promise')
t.ok(end - start > 98, name + 'should wait close to correct time')
t.ok(end - start < 125, name + 'should wait close to correct time')
t.ok(end - start >= 100, name + 'should delay at least the specified duration')
})
})
})
Expand Down