From 62cf52293a2147bd3d9ca02c1c155767bc92179c Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 10 Mar 2015 12:59:22 -0700 Subject: [PATCH] zuul: drop IE6-7 tests 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 | 2 +- bin/download-node-tests.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.zuul.yml b/.zuul.yml index 8ac55f14..bfa0cb40 100644 --- 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 diff --git a/bin/download-node-tests.js b/bin/download-node-tests.js index 49abe18d..f543071a 100755 --- a/bin/download-node-tests.js +++ b/bin/download-node-tests.js @@ -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 }