- From: Adam Rice <notifications@github.com>
- Date: Tue, 15 Aug 2017 23:45:04 +0000 (UTC)
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 15 August 2017 23:45:30 UTC
ricea commented on this pull request. > + startCalled = true; + return new Promise(resolve => setTimeout(resolve, 90)) + .then(() => { startDone = true; }); + }, + transform() { + t.step(() => { + assert_true(startDone, 'startPromise must resolve before transform is called'); + }); + return new Promise(resolve => setTimeout(resolve, 30)) + .then(() => { transformDone = true; }); + }, + flush() { + t.step(() => { + assert_true(transformDone, 'pending transform promise must resolve before flush is called'); + }); + return new Promise(resolve => setTimeout(resolve, 50)) Done. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/762#discussion_r133331011
Received on Tuesday, 15 August 2017 23:45:30 UTC