]> zoso.dev Git - buffer.git/commitdiff
zuul: drop IE6-7 tests
authorFeross Aboukhadijeh <feross@feross.org>
Tue, 10 Mar 2015 19:59:22 +0000 (12:59 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Tue, 10 Mar 2015 19:59:22 +0000 (12:59 -0700)
IE6 and IE7 tests stopped working at some point, presumably because
some dependency of zuul or browserify added a dangling comma or some
feature that these browsers don't support.

I don't have the time/patience to debug this now. buffer probably works
in IE6-7 still, but I'm dropping the tests for it. If someone wants to
fix the issue and re-enable these tests, you're welcome to :)

.zuul.yml
bin/download-node-tests.js

index 8ac55f148622db305196cb7ba674075e022abd9f..bfa0cb40dda0b18ed59218f6a9fda0b3c1987db6 100644 (file)
--- a/.zuul.yml
+++ b/.zuul.yml
@@ -9,7 +9,7 @@ browsers:
   - name: safari
     version: 5..latest
   - name: ie
-    version: 6..latest
+    version: 8..latest
   - name: opera
     version: 11..latest
   - name: iphone
index 49abe18da0b0c07697f0f7a618acf8f8415c8d74..f543071a314cd2dd12b87d385676d5ccc8355679 100755 (executable)
@@ -56,7 +56,9 @@ function testfixer (filename) {
 
     if (firstline) {
       // require buffer explicitly
-      line = 'var Buffer = require(\'../../\').Buffer\nif (process.env.OBJECT_IMPL) Buffer.TYPED_ARRAY_SUPPORT = false\n' + line
+      line = 'var Buffer = require(\'../../\').Buffer\n' +
+        'if (process.env.OBJECT_IMPL) Buffer.TYPED_ARRAY_SUPPORT = false\n' +
+        line
       firstline = false
     }