observable-from.any.js.ini (9421B)
1 [observable-from.any.html] 2 [from(): Observable.from() is a function] 3 expected: FAIL 4 5 [from(): Failed conversions] 6 expected: FAIL 7 8 [from(): Given an observable, it returns that exact observable] 9 expected: FAIL 10 11 [from(): Given an array] 12 expected: FAIL 13 14 [from(): Iterable converts to Observable] 15 expected: FAIL 16 17 [from(): [Symbol.iterator\] side-effects (one observable)] 18 expected: FAIL 19 20 [from(): [Symbol.iterator\] side-effects (many observables)] 21 expected: FAIL 22 23 [from(): [Symbol.iterator\] next() throws error] 24 expected: FAIL 25 26 [from(): Converts Promise to Observable] 27 expected: FAIL 28 29 [from(): Converts rejected Promise to Observable. No `unhandledrejection` event when error is handled by subscription] 30 expected: FAIL 31 32 [from(): Rejections not handled by subscription are reported to the global, and still not sent as an unhandledrejection event] 33 expected: FAIL 34 35 [from(): Observable that implements @@iterator protocol gets converted as an Observable, not iterator] 36 expected: FAIL 37 38 [from(): Promise that implements @@iterator protocol gets converted as an iterable, not Promise] 39 expected: FAIL 40 41 [from(): [Symbol.iterator\] not callable] 42 expected: FAIL 43 44 [from(): [Symbol.iterator\] is not cached] 45 expected: FAIL 46 47 [from(): Promise whose [Symbol.iterator\] returns null converts as Promise] 48 expected: FAIL 49 50 [from(): Rethrows the error when Converting an object whose @@iterator method *getter* throws an error] 51 expected: FAIL 52 53 [from(): Async iterable protocol null, converts as iterator] 54 expected: FAIL 55 56 [from(): Asynchronous iterable conversion] 57 expected: FAIL 58 59 [from(): Asynchronous generator conversion: can only be used once] 60 expected: FAIL 61 62 [from(): Promise-wrapping semantics of IteratorResult interface] 63 expected: FAIL 64 65 [from(): Errors thrown in Symbol.asyncIterator() are propagated synchronously] 66 expected: FAIL 67 68 [from(): Errors thrown in async iterator's next() GETTER are propagated in a microtask] 69 expected: FAIL 70 71 [from(): Errors thrown in async iterator's next() are propagated in a microtask] 72 expected: FAIL 73 74 [from(): Aborting sync iterable midway through iteration both stops iteration and invokes `IteratorRecord#return()] 75 expected: FAIL 76 77 [from(): Aborting async iterable midway through iteration both stops iteration and invokes `IteratorRecord#return()] 78 expected: FAIL 79 80 [from(): Sync iterable: `Iterator#return()` must return an Object, or an error is thrown] 81 expected: FAIL 82 83 [from(): Async iterable: `Iterator#return()` must return an Object, or a Promise rejects asynchronously] 84 expected: FAIL 85 86 [from(): Asynchronous iterable conversion, with synchronous iterable fallback] 87 expected: FAIL 88 89 [from(): Generator finally block runs when subscription is aborted] 90 expected: FAIL 91 92 [from(): Generator finally block run when Observable completes] 93 expected: FAIL 94 95 [from(): Generator finally block run when Observable errors] 96 expected: FAIL 97 98 [from(): Async generator finally block run when subscription is aborted] 99 expected: FAIL 100 101 [from(): Async generator finally block runs when Observable completes] 102 expected: FAIL 103 104 [from(): Async generator finally block run when Observable errors] 105 expected: FAIL 106 107 [from(): Sync iterable: error thrown from IteratorRecord#return() can be synchronously caught] 108 expected: FAIL 109 110 [from(): Async iterable: error thrown from IteratorRecord#return() is wrapped in rejected Promise] 111 expected: FAIL 112 113 [from(): Subscribing to an iterable Observable with an aborted signal does not call next()] 114 expected: FAIL 115 116 [from(): When iterable conversion aborts the subscription, next() is never called] 117 expected: FAIL 118 119 [from(): Aborting an async iterable subscription stops subsequent next() calls, but old next() Promise reactions are web-observable] 120 expected: FAIL 121 122 [from(): Abort after complete does NOT call IteratorRecord#return()] 123 expected: FAIL 124 125 [from(): [Symbol.iterator\] not callable AFTER SUBSCRIBE throws] 126 expected: FAIL 127 128 [from(): [Symbol.iterator\] returns null AFTER SUBSCRIBE throws] 129 expected: FAIL 130 131 [Invalid async iterator protocol error is surfaced before Subscriber#signal is consulted] 132 expected: FAIL 133 134 [Invalid iterator protocol error is surfaced before Subscriber#signal is consulted] 135 expected: FAIL 136 137 [from(): Asynchronous iterable multiple in-flight subscriptions] 138 expected: FAIL 139 140 [from(): Sync iterable multiple in-flight subscriptions] 141 expected: FAIL 142 143 [No error is reported when aborting a subscription to a sync iterator that has no `return()` implementation] 144 expected: FAIL 145 146 147 [observable-from.any.worker.html] 148 [from(): Observable.from() is a function] 149 expected: FAIL 150 151 [from(): Failed conversions] 152 expected: FAIL 153 154 [from(): Given an observable, it returns that exact observable] 155 expected: FAIL 156 157 [from(): Given an array] 158 expected: FAIL 159 160 [from(): Iterable converts to Observable] 161 expected: FAIL 162 163 [from(): [Symbol.iterator\] side-effects (one observable)] 164 expected: FAIL 165 166 [from(): [Symbol.iterator\] side-effects (many observables)] 167 expected: FAIL 168 169 [from(): [Symbol.iterator\] next() throws error] 170 expected: FAIL 171 172 [from(): Converts Promise to Observable] 173 expected: FAIL 174 175 [from(): Converts rejected Promise to Observable. No `unhandledrejection` event when error is handled by subscription] 176 expected: FAIL 177 178 [from(): Rejections not handled by subscription are reported to the global, and still not sent as an unhandledrejection event] 179 expected: FAIL 180 181 [from(): Observable that implements @@iterator protocol gets converted as an Observable, not iterator] 182 expected: FAIL 183 184 [from(): Promise that implements @@iterator protocol gets converted as an iterable, not Promise] 185 expected: FAIL 186 187 [from(): [Symbol.iterator\] not callable] 188 expected: FAIL 189 190 [from(): [Symbol.iterator\] is not cached] 191 expected: FAIL 192 193 [from(): Promise whose [Symbol.iterator\] returns null converts as Promise] 194 expected: FAIL 195 196 [from(): Rethrows the error when Converting an object whose @@iterator method *getter* throws an error] 197 expected: FAIL 198 199 [from(): Async iterable protocol null, converts as iterator] 200 expected: FAIL 201 202 [from(): Asynchronous iterable conversion] 203 expected: FAIL 204 205 [from(): Asynchronous generator conversion: can only be used once] 206 expected: FAIL 207 208 [from(): Promise-wrapping semantics of IteratorResult interface] 209 expected: FAIL 210 211 [from(): Errors thrown in Symbol.asyncIterator() are propagated synchronously] 212 expected: FAIL 213 214 [from(): Errors thrown in async iterator's next() GETTER are propagated in a microtask] 215 expected: FAIL 216 217 [from(): Errors thrown in async iterator's next() are propagated in a microtask] 218 expected: FAIL 219 220 [from(): Aborting sync iterable midway through iteration both stops iteration and invokes `IteratorRecord#return()] 221 expected: FAIL 222 223 [from(): Aborting async iterable midway through iteration both stops iteration and invokes `IteratorRecord#return()] 224 expected: FAIL 225 226 [from(): Sync iterable: `Iterator#return()` must return an Object, or an error is thrown] 227 expected: FAIL 228 229 [from(): Async iterable: `Iterator#return()` must return an Object, or a Promise rejects asynchronously] 230 expected: FAIL 231 232 [from(): Asynchronous iterable conversion, with synchronous iterable fallback] 233 expected: FAIL 234 235 [from(): Generator finally block runs when subscription is aborted] 236 expected: FAIL 237 238 [from(): Generator finally block run when Observable completes] 239 expected: FAIL 240 241 [from(): Generator finally block run when Observable errors] 242 expected: FAIL 243 244 [from(): Async generator finally block run when subscription is aborted] 245 expected: FAIL 246 247 [from(): Async generator finally block runs when Observable completes] 248 expected: FAIL 249 250 [from(): Async generator finally block run when Observable errors] 251 expected: FAIL 252 253 [from(): Sync iterable: error thrown from IteratorRecord#return() can be synchronously caught] 254 expected: FAIL 255 256 [from(): Async iterable: error thrown from IteratorRecord#return() is wrapped in rejected Promise] 257 expected: FAIL 258 259 [from(): Subscribing to an iterable Observable with an aborted signal does not call next()] 260 expected: FAIL 261 262 [from(): When iterable conversion aborts the subscription, next() is never called] 263 expected: FAIL 264 265 [from(): Aborting an async iterable subscription stops subsequent next() calls, but old next() Promise reactions are web-observable] 266 expected: FAIL 267 268 [from(): Abort after complete does NOT call IteratorRecord#return()] 269 expected: FAIL 270 271 [from(): [Symbol.iterator\] not callable AFTER SUBSCRIBE throws] 272 expected: FAIL 273 274 [from(): [Symbol.iterator\] returns null AFTER SUBSCRIBE throws] 275 expected: FAIL 276 277 [Invalid async iterator protocol error is surfaced before Subscriber#signal is consulted] 278 expected: FAIL 279 280 [Invalid iterator protocol error is surfaced before Subscriber#signal is consulted] 281 expected: FAIL 282 283 [from(): Asynchronous iterable multiple in-flight subscriptions] 284 expected: FAIL 285 286 [from(): Sync iterable multiple in-flight subscriptions] 287 expected: FAIL 288 289 [No error is reported when aborting a subscription to a sync iterator that has no `return()` implementation] 290 expected: FAIL