Searched refs:readyPromise (Results 1 – 4 of 4) sorted by relevance
/third_party/node/test/fixtures/wpt/streams/writable-streams/ |
D | reentrant-strategy.any.js | 139 …const readyPromise = promise_rejects_js(t, TypeError, writer.ready, 'ready promise should reject'); constant 141 return Promise.all([writePromise, readyPromise, closedPromise]) 168 …const readyPromise = promise_rejects_js(t, TypeError, writer1.ready, 'ready promise should reject'… constant 170 …return Promise.all([writePromise1, readyPromise, closedPromise1, writePromise2, closePromise, clos…
|
D | bad-underlying-sinks.any.js | 148 const readyPromise = writer.ready; constant 151 assert_equals(writer.ready, readyPromise,
|
D | general.any.js | 234 const readyPromise = writer.ready.catch(() => events.push('ready')); constant 237 return Promise.all([readyPromise, closedPromise]).then(() => {
|
D | aborting.any.js | 20 const readyPromise = writer.ready; constant 24 assert_equals(writer.ready, readyPromise, 'the ready promise property should not change'); 27 promise_rejects_exactly(t, error1, readyPromise, 'the ready promise should reject with error1'), 38 const readyPromise = writer.ready; constant 40 return readyPromise.then(() => { 43 assert_not_equals(writer.ready, readyPromise, 'the ready promise property should change');
|