We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a756654 commit e48e296Copy full SHA for e48e296
spec-dtslint/operators/retryWhen-spec.ts
@@ -16,3 +16,7 @@ it('should enforce types', () => {
16
it('should enforce types of the notifier', () => {
17
const o = of(1, 2, 3).pipe(retryWhen(() => 8)); // $ExpectError
18
});
19
+
20
+it('should be deprecated', () => {
21
+ const o = of(1, 2, 3).pipe(retryWhen(() => of(true))); // $ExpectDeprecation
22
+});
0 commit comments