Skip to content

Commit 34f8c17

Browse files
authoredJan 1, 2021
Allow disabling leading check (#14)
1 parent d4aca6d commit 34f8c17

File tree

5 files changed

+36
-1
lines changed

5 files changed

+36
-1
lines changed
 

‎index.d.ts

+9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ declare namespace pWaitFor {
1313
@default Infinity
1414
*/
1515
readonly timeout?: number;
16+
17+
/**
18+
Whether to run the check immediately rather than starting by waiting `interval` milliseconds.
19+
20+
Useful for when the check, if run immediately, would likely return `false`. In this scenario, set `leadingCheck` to `false`.
21+
22+
@default true
23+
*/
24+
readonly leadingCheck?: boolean;
1625
}
1726
}
1827

‎index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const pWaitFor = async (condition, options) => {
55
options = {
66
interval: 20,
77
timeout: Infinity,
8+
leadingCheck: true,
89
...options
910
};
1011

@@ -29,7 +30,11 @@ const pWaitFor = async (condition, options) => {
2930
}
3031
};
3132

32-
check();
33+
if (options.leadingCheck) {
34+
check();
35+
} else {
36+
retryTimeout = setTimeout(check, options.interval);
37+
}
3338
});
3439

3540
if (options.timeout !== Infinity) {

‎index.test-d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ expectType<Promise<void>>(pWaitFor(() => false));
55
expectType<Promise<void>>(pWaitFor(() => Promise.resolve(false)));
66
expectType<Promise<void>>(pWaitFor(() => true, {interval: 1}));
77
expectType<Promise<void>>(pWaitFor(() => true, {timeout: 1}));
8+
expectType<Promise<void>>(pWaitFor(() => true, {leadingCheck: false}));

‎readme.md

+8
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,14 @@ Default: `Infinity`
5555

5656
Number of milliseconds to wait before automatically rejecting.
5757

58+
##### leadingCheck
59+
60+
Type: `boolean`\
61+
Default: `true`
62+
63+
Whether to run the check immediately rather than starting by waiting `interval` milliseconds.
64+
65+
Useful for when the check, if run immediately, would likely return `false`. In this scenario, set `leadingCheck` to `false`.
5866

5967
## Related
6068

‎test.js

+12
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,15 @@ test('stops performing checks if a timeout occurs', async t => {
5858
t.is(checksPerformed, checksAtTimeout);
5959
});
6060
});
61+
62+
test('does not perform a leading check', async t => {
63+
const ms = 200;
64+
const end = timeSpan();
65+
66+
await pWaitFor(async () => true, {
67+
interval: ms,
68+
leadingCheck: false
69+
});
70+
71+
t.true(end() > (ms - 20));
72+
})

0 commit comments

Comments
 (0)
Please sign in to comment.