@@ -738,7 +738,6 @@ export default {
738738 'Aborting a WritableStream puts it in an errored state with the error passed to abort()' ,
739739 'if a writer is created for a stream with a pending abort, its ready should be rejected with the abort error' ,
740740 'sink abort() should not be called if stream was erroring due to bad strategy before abort() was called' ,
741- "WritableStream if sink's abort throws, for an abort performed during a write, the promise returned by ws.abort() rejects" ,
742741 'writer.abort() while there is an in-flight write, and then finish the write with rejection' ,
743742 'writer.abort(), controller.error() while there is an in-flight write, and then finish the write' ,
744743 'writer.abort(), controller.error() while there is an in-flight close, and then finish the close' ,
@@ -773,7 +772,6 @@ export default {
773772 expectedFailures : [
774773 'when close is called on a WritableStream in waiting state, ready promise should be fulfilled' ,
775774 'releaseLock() should not change the result of sync close()' ,
776- 'close() on an errored stream should reject' ,
777775 ] ,
778776 } ,
779777 'writable-streams/constructor.any.js' : {
@@ -814,13 +812,7 @@ export default {
814812 'ready promise should fire before closed on releaseLock' ,
815813 ] ,
816814 } ,
817- 'writable-streams/properties.any.js' : {
818- comment : 'To be investigated' ,
819- expectedFailures : [
820- 'sink method write should be called with the right number of arguments' ,
821- "sink method write should be called even when it's located on the prototype chain" ,
822- ] ,
823- } ,
815+ 'writable-streams/properties.any.js' : { } ,
824816 'writable-streams/reentrant-strategy.any.js' : {
825817 comment : 'A hanging Promise was canceled.' ,
826818 disabledTests : true ,
@@ -829,15 +821,12 @@ export default {
829821 comment : 'To be investigated' ,
830822 expectedFailures : [
831823 "underlying sink's write or close should not be called if start throws" ,
832- 'when start() rejects, writer promises should reject in standard order' ,
833824 ] ,
834825 } ,
835826 'writable-streams/write.any.js' : {
836827 comment : 'To be investigated' ,
837828 expectedFailures : [
838- 'write() on a stream with HWM 0 should not cause the ready Promise to resolve' ,
839829 'WritableStream should transition to waiting until write is acknowledged' ,
840- "when sink's write throws an error, the stream should become errored and the promise should reject" ,
841830 ] ,
842831 } ,
843832} satisfies TestRunnerConfig ;
0 commit comments