Home
last modified time | relevance | path

Searched refs:readyPromise (Results 1 – 4 of 4) sorted by relevance

/third_party/node/test/fixtures/wpt/streams/writable-streams/
Dreentrant-strategy.any.js139 …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…
Dbad-underlying-sinks.any.js148 const readyPromise = writer.ready; constant
151 assert_equals(writer.ready, readyPromise,
Dgeneral.any.js234 const readyPromise = writer.ready.catch(() => events.push('ready')); constant
237 return Promise.all([readyPromise, closedPromise]).then(() => {
Daborting.any.js20 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');