tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

observable-take.any.js.ini (1469B)


      1 [observable-take.any.html]
      2  [take(): Takes the first N values from the source observable, then completes]
      3    expected: FAIL
      4 
      5  [take(): Forwards complete()s that happen before the take count is met, and unsubscribes from source Observable]
      6    expected: FAIL
      7 
      8  [take(): Should forward errors from the source observable]
      9    expected: FAIL
     10 
     11  [take(): take(0) should not subscribe to the source observable, and should return an observable that immediately completes]
     12    expected: FAIL
     13 
     14  [take(): Negative count is treated as maximum value]
     15    expected: FAIL
     16 
     17  [take(): No crash when take(1) unsubscribes from its source when next() is called, and the Subscriber iterates over the rest of the Observables]
     18    expected: FAIL
     19 
     20 
     21 [observable-take.any.worker.html]
     22  [take(): Takes the first N values from the source observable, then completes]
     23    expected: FAIL
     24 
     25  [take(): Forwards complete()s that happen before the take count is met, and unsubscribes from source Observable]
     26    expected: FAIL
     27 
     28  [take(): Should forward errors from the source observable]
     29    expected: FAIL
     30 
     31  [take(): take(0) should not subscribe to the source observable, and should return an observable that immediately completes]
     32    expected: FAIL
     33 
     34  [take(): Negative count is treated as maximum value]
     35    expected: FAIL
     36 
     37  [take(): No crash when take(1) unsubscribes from its source when next() is called, and the Subscriber iterates over the rest of the Observables]
     38    expected: FAIL