observable-constructor.any.js.ini (7935B)
1 [observable-constructor.any.worker.html] 2 [Observable constructor] 3 expected: FAIL 4 5 [Subscriber interface is not constructible] 6 expected: FAIL 7 8 [subscribe() can be called with no arguments] 9 expected: FAIL 10 11 [Observable constructor calls initializer on subscribe] 12 expected: FAIL 13 14 [Observable error path called synchronously] 15 expected: FAIL 16 17 [Observable should error if initializer throws] 18 expected: FAIL 19 20 [Subscription does not emit values after completion] 21 expected: FAIL 22 23 [Subscription does not emit values after error] 24 expected: FAIL 25 26 [Completing or nexting a subscriber after an error does nothing] 27 expected: FAIL 28 29 [Errors pushed to the subscriber that are not handled by the subscription are reported to the global] 30 expected: FAIL 31 32 [Errors thrown in the initializer that are not handled by the subscription are reported to the global] 33 expected: FAIL 34 35 [Subscription reports errors that are pushed after subscriber is closed by completion] 36 expected: FAIL 37 38 [Errors thrown by initializer function after subscriber is closed by completion are reported] 39 expected: FAIL 40 41 [Subscription is inactive after complete()] 42 expected: FAIL 43 44 [Subscription is inactive after error()] 45 expected: FAIL 46 47 [Subscription is inactive when aborted signal is passed in] 48 expected: FAIL 49 50 [Subscriber#signal is not the same AbortSignal as the one passed into `subscribe()`] 51 expected: FAIL 52 53 [Errors thrown by initializer function after subscriber is closed by error are reported] 54 expected: FAIL 55 56 [Errors pushed by initializer function after subscriber is closed by error are reported] 57 expected: FAIL 58 59 [Subscriber#complete() cannot re-entrantly invoke itself] 60 expected: FAIL 61 62 [Subscriber#error() cannot re-entrantly invoke itself] 63 expected: FAIL 64 65 [Unsubscription lifecycle] 66 expected: FAIL 67 68 [Aborting a subscription should stop emitting values] 69 expected: FAIL 70 71 [Calling subscribe should never throw an error synchronously, initializer throws error] 72 expected: FAIL 73 74 [Calling subscribe should never throw an error synchronously, subscriber pushes error] 75 expected: FAIL 76 77 [Teardown should be called when subscription is aborted] 78 expected: FAIL 79 80 [Teardowns should be called when subscription is closed by completion] 81 expected: FAIL 82 83 [Teardowns should be called when subscription is closed by subscriber pushing an error] 84 expected: FAIL 85 86 [Teardowns should be called when subscription is closed by subscriber throwing error] 87 expected: FAIL 88 89 [Teardowns should be called synchronously during addTeardown() if the subscription is inactive] 90 expected: FAIL 91 92 [Subscribe with just a function as the next handler] 93 expected: FAIL 94 95 [Subscriber must have receiver] 96 expected: FAIL 97 98 [Subscriber next & error must recieve argument] 99 expected: FAIL 100 101 [Subscriber complete() will set active to false, and abort signal] 102 expected: FAIL 103 104 [Subscriber active is readonly] 105 expected: FAIL 106 107 [Subscriber signal is readonly] 108 expected: FAIL 109 110 [Subscriber#error() value is stored as Subscriber's AbortSignal's reason] 111 expected: FAIL 112 113 [Teardowns are called in upstream->downstream order on consumer-initiated unsubscription] 114 expected: FAIL 115 116 [Teardowns are called in downstream->upstream order on consumer-initiated unsubscription with pre-aborted Signal] 117 expected: FAIL 118 119 [Producer-initiated unsubscription in a downstream Observable fires abort events before each teardown, in downstream->upstream order] 120 expected: FAIL 121 122 [Multiple subscriptions share the same producer and teardown runs only after last subscription abort] 123 expected: FAIL 124 125 [New subscription after complete creates new producer] 126 expected: FAIL 127 128 [Teardown runs after last unsubscribe regardless of unsubscription order] 129 expected: FAIL 130 131 [Subscriber iterates over a snapshot of its internal observers] 132 expected: FAIL 133 134 135 [observable-constructor.any.html] 136 [Observable constructor] 137 expected: FAIL 138 139 [Subscriber interface is not constructible] 140 expected: FAIL 141 142 [subscribe() can be called with no arguments] 143 expected: FAIL 144 145 [Observable constructor calls initializer on subscribe] 146 expected: FAIL 147 148 [Observable error path called synchronously] 149 expected: FAIL 150 151 [Observable should error if initializer throws] 152 expected: FAIL 153 154 [Subscription does not emit values after completion] 155 expected: FAIL 156 157 [Subscription does not emit values after error] 158 expected: FAIL 159 160 [Completing or nexting a subscriber after an error does nothing] 161 expected: FAIL 162 163 [Errors pushed to the subscriber that are not handled by the subscription are reported to the global] 164 expected: FAIL 165 166 [Errors thrown in the initializer that are not handled by the subscription are reported to the global] 167 expected: FAIL 168 169 [Subscription reports errors that are pushed after subscriber is closed by completion] 170 expected: FAIL 171 172 [Errors thrown by initializer function after subscriber is closed by completion are reported] 173 expected: FAIL 174 175 [Subscription is inactive after complete()] 176 expected: FAIL 177 178 [Subscription is inactive after error()] 179 expected: FAIL 180 181 [Subscription is inactive when aborted signal is passed in] 182 expected: FAIL 183 184 [Subscriber#signal is not the same AbortSignal as the one passed into `subscribe()`] 185 expected: FAIL 186 187 [Errors thrown by initializer function after subscriber is closed by error are reported] 188 expected: FAIL 189 190 [Errors pushed by initializer function after subscriber is closed by error are reported] 191 expected: FAIL 192 193 [Subscriber#complete() cannot re-entrantly invoke itself] 194 expected: FAIL 195 196 [Subscriber#error() cannot re-entrantly invoke itself] 197 expected: FAIL 198 199 [Unsubscription lifecycle] 200 expected: FAIL 201 202 [Aborting a subscription should stop emitting values] 203 expected: FAIL 204 205 [Calling subscribe should never throw an error synchronously, initializer throws error] 206 expected: FAIL 207 208 [Calling subscribe should never throw an error synchronously, subscriber pushes error] 209 expected: FAIL 210 211 [Teardown should be called when subscription is aborted] 212 expected: FAIL 213 214 [Teardowns should be called when subscription is closed by completion] 215 expected: FAIL 216 217 [Teardowns should be called when subscription is closed by subscriber pushing an error] 218 expected: FAIL 219 220 [Teardowns should be called when subscription is closed by subscriber throwing error] 221 expected: FAIL 222 223 [Teardowns should be called synchronously during addTeardown() if the subscription is inactive] 224 expected: FAIL 225 226 [Subscribe with just a function as the next handler] 227 expected: FAIL 228 229 [Subscriber must have receiver] 230 expected: FAIL 231 232 [Subscriber next & error must recieve argument] 233 expected: FAIL 234 235 [Subscriber complete() will set active to false, and abort signal] 236 expected: FAIL 237 238 [Subscriber active is readonly] 239 expected: FAIL 240 241 [Subscriber signal is readonly] 242 expected: FAIL 243 244 [Subscriber#error() value is stored as Subscriber's AbortSignal's reason] 245 expected: FAIL 246 247 [Teardowns are called in upstream->downstream order on consumer-initiated unsubscription] 248 expected: FAIL 249 250 [Teardowns are called in downstream->upstream order on consumer-initiated unsubscription with pre-aborted Signal] 251 expected: FAIL 252 253 [Producer-initiated unsubscription in a downstream Observable fires abort events before each teardown, in downstream->upstream order] 254 expected: FAIL 255 256 [Multiple subscriptions share the same producer and teardown runs only after last subscription abort] 257 expected: FAIL 258 259 [New subscription after complete creates new producer] 260 expected: FAIL 261 262 [Teardown runs after last unsubscribe regardless of unsubscription order] 263 expected: FAIL 264 265 [Subscriber iterates over a snapshot of its internal observers] 266 expected: FAIL