- From: Adam Rice <notifications@github.com>
- Date: Wed, 23 Aug 2017 02:31:56 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 23 August 2017 09:32:19 UTC
ricea commented on this pull request.
> +}
+
+test(() => {
+ getterThrowsForAll(TransformStream.prototype, 'readable',
+ [fakeTS(), realTSDefaultController(), undefined, null]);
+}, 'TransformStream.prototype.readable enforces a brand check');
+
+test(() => {
+ getterThrowsForAll(TransformStream.prototype, 'writable',
+ [fakeTS(), realTSDefaultController(), undefined, null]);
+}, 'TransformStream.prototype.writable enforces a brand check');
+
+test(() => {
+ constructorThrowsForAll(TransformStreamDefaultController,
+ [fakeTS(), realTS(), realTSDefaultController(), undefined, null]);
+}, 'TransformStreamDefaultConstructor enforces a brand check and doesn\'t permit independant construction');
Fixed, thanks.
--
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/772#discussion_r134702070
Received on Wednesday, 23 August 2017 09:32:19 UTC