Re: [whatwg/streams] Reject writer.ready promise on errors, instead of fulfilling (#526)

ricea commented on this pull request.



> @@ -0,0 +1,78 @@
+'use strict';
+
+if (self.importScripts) {
+  self.importScripts('/resources/testharness.js');
+  self.importScripts('../resources/test-utils.js');
+  self.importScripts('../resources/recording-streams.js');
+}
+
+const error1 = new Error('error1');
+error1.name = 'error1';
+
+promise_test(t => {
+

I am biased towards Chromium style. That may or may not correspond with what is appropriate for web-platform-tests.

-- 
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/526

Received on Tuesday, 11 October 2016 04:21:08 UTC