|
1 | 1 | import { race, of } from 'rxjs';
|
2 |
| - |
3 |
| -it('should infer correctly with 1 parameter', () => { |
4 |
| - const a = of(1); |
5 |
| - const o = race(a); // $ExpectType Observable<number> |
6 |
| -}); |
| 2 | +import { a$, b, b$, c, c$, d$, e$, f$ } from '../helpers'; |
7 | 3 |
|
8 | 4 | describe('race(a, b, c)', () => {
|
9 |
| - it('should infer correctly with multiple parameters of the same type', () => { |
10 |
| - const a = of(1); |
11 |
| - const b = of(2); |
12 |
| - const o = race(a, b); // $ExpectType Observable<number> |
13 |
| - }); |
14 |
| - |
15 |
| - it('should support 2 parameters with different types', () => { |
16 |
| - const a = of(1); |
17 |
| - const b = of('a'); |
18 |
| - const o = race(a, b); // $ExpectType Observable<string | number> |
19 |
| - }); |
20 |
| - |
21 |
| - it('should support 3 parameters with different types', () => { |
22 |
| - const a = of(1); |
23 |
| - const b = of('a'); |
24 |
| - const c = of(true); |
25 |
| - const o = race(a, b, c); // $ExpectType Observable<string | number | boolean> |
26 |
| - }); |
27 |
| - |
28 |
| - it('should support 4 parameters with different types', () => { |
29 |
| - const a = of(1); |
30 |
| - const b = of('a'); |
31 |
| - const c = of(true); |
32 |
| - const d = of([1, 2, 3]); |
33 |
| - const o = race(a, b, c, d); // $ExpectType Observable<string | number | boolean | number[]> |
34 |
| - }); |
35 |
| - |
36 |
| - it('should support 5 parameters with different types', () => { |
37 |
| - const a = of(1); |
38 |
| - const b = of('a'); |
39 |
| - const c = of(true); |
40 |
| - const d = of([1, 2, 3]); |
41 |
| - const e = of(['blah']); |
42 |
| - const o = race(a, b, c, d, e); // $ExpectType Observable<string | number | boolean | number[] | string[]> |
43 |
| - }); |
44 |
| - |
45 |
| - it('should support 6 or more parameters of the same type', () => { |
46 |
| - const a = of(1); |
47 |
| - const o = race(a, a, a, a, a, a, a, a, a, a, a, a, a, a); // $ExpectType Observable<number> |
48 |
| - }); |
49 |
| - |
50 |
| - it('should return unknown for 6 or more arguments of different types', () => { |
51 |
| - const a = of(1); |
52 |
| - const b = of('a'); |
53 |
| - const c = of(true); |
54 |
| - const d = of([1, 2, 3]); |
55 |
| - const e = of(['blah']); |
56 |
| - const f = of({ foo: 'bar' }); |
57 |
| - const o = race(a, b, c, d, e, f); // $ExpectType Observable<unknown> |
| 5 | + it('should support N arguments of different types', () => { |
| 6 | + const o1 = race(a$); // $ExpectType Observable<A> |
| 7 | + const o2 = race(a$, b$); // $ExpectType Observable<A | B> |
| 8 | + const o3 = race(a$, b$, c$); // $ExpectType Observable<A | B | C> |
| 9 | + const o4 = race(a$, b$, c$, d$); // $ExpectType Observable<A | B | C | D> |
| 10 | + const o5 = race(a$, b$, c$, d$, e$); // $ExpectType Observable<A | B | C | D | E> |
| 11 | + const o6 = race(a$, b$, c$, d$, e$, f$); // $ExpectType Observable<A | B | C | D | E | F> |
58 | 12 | });
|
59 | 13 | });
|
60 | 14 |
|
61 | 15 | describe('race([a, b, c])', () => {
|
62 |
| - it('should infer correctly with multiple parameters of the same type', () => { |
63 |
| - const a = of(1); |
64 |
| - const b = of(2); |
65 |
| - const o = race([a, b]); // $ExpectType Observable<number> |
66 |
| - }); |
67 |
| - |
68 |
| - it('should support 2 parameters with different types', () => { |
69 |
| - const a = of(1); |
70 |
| - const b = of('a'); |
71 |
| - const o = race([a, b]); // $ExpectType Observable<string | number> |
72 |
| - }); |
73 |
| - |
74 |
| - it('should support 3 parameters with different types', () => { |
75 |
| - const a = of(1); |
76 |
| - const b = of('a'); |
77 |
| - const c = of(true); |
78 |
| - const o = race([a, b, c]); // $ExpectType Observable<string | number | boolean> |
79 |
| - }); |
80 |
| - |
81 |
| - it('should support 4 parameters with different types', () => { |
82 |
| - const a = of(1); |
83 |
| - const b = of('a'); |
84 |
| - const c = of(true); |
85 |
| - const d = of([1, 2, 3]); |
86 |
| - const o = race([a, b, c, d]); // $ExpectType Observable<string | number | boolean | number[]> |
87 |
| - }); |
88 |
| - |
89 |
| - it('should support 5 parameters with different types', () => { |
90 |
| - const a = of(1); |
91 |
| - const b = of('a'); |
92 |
| - const c = of(true); |
93 |
| - const d = of([1, 2, 3]); |
94 |
| - const e = of(['blah']); |
95 |
| - const o = race([a, b, c, d, e]); // $ExpectType Observable<string | number | boolean | number[] | string[]> |
96 |
| - }); |
97 |
| - |
98 |
| - it('should support 6 or more parameters of the same type', () => { |
99 |
| - const a = of(1); |
100 |
| - const o = race([a, a, a, a, a, a, a, a, a, a, a, a, a, a]); // $ExpectType Observable<number> |
101 |
| - }); |
102 |
| - |
103 |
| - it('should return {} for 6 or more arguments of different types', () => { |
104 |
| - const a = of(1); |
105 |
| - const b = of('a'); |
106 |
| - const c = of(true); |
107 |
| - const d = of([1, 2, 3]); |
108 |
| - const e = of(['blah']); |
109 |
| - const f = of({ foo: 'bar' }); |
110 |
| - const o = race([a, b, c, d, e, f]); // $ExpectType Observable<unknown> |
| 16 | + it('should support N arguments of different types', () => { |
| 17 | + const o1 = race([a$]); // $ExpectType Observable<A> |
| 18 | + const o2 = race([a$, b$]); // $ExpectType Observable<A | B> |
| 19 | + const o3 = race([a$, b$, c$]); // $ExpectType Observable<A | B | C> |
| 20 | + const o4 = race([a$, b$, c$, d$]); // $ExpectType Observable<A | B | C | D> |
| 21 | + const o5 = race([a$, b$, c$, d$, e$]); // $ExpectType Observable<A | B | C | D | E> |
| 22 | + const o6 = race([a$, b$, c$, d$, e$, f$]); // $ExpectType Observable<A | B | C | D | E | F> |
111 | 23 | });
|
112 | 24 | });
|
113 | 25 |
|
114 | 26 | it('should race observable inputs', () => {
|
115 |
| - const o = race(of(1), Promise.resolve('foo'), [true, false]); // $ExpectType Observable<string | number | boolean> |
| 27 | + const o = race(a$, Promise.resolve(b), [c]); // $ExpectType Observable<A | B | C> |
116 | 28 | });
|
117 | 29 |
|
118 | 30 | it('should race an array observable inputs', () => {
|
119 |
| - const o = race([of(1), Promise.resolve('foo'), [true, false]]); // $ExpectType Observable<string | number | boolean> |
| 31 | + const o = race([a$, Promise.resolve(b), [c]]); // $ExpectType Observable<A | B | C> |
120 | 32 | });
|
0 commit comments