diff --git a/README.md b/README.md index e879afd..d781d21 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,8 @@ granted by the Apache 2.0 license are reserved by the Original Author. ## Badges +[![Sauce Test Status](https://saucelabs.com/browser-matrix/crc32.svg)](https://saucelabs.com/u/crc32) + [![Build Status](https://travis-ci.org/SheetJS/js-crc32.svg?branch=master)](https://travis-ci.org/SheetJS/js-crc32) [![Coverage Status](http://img.shields.io/coveralls/SheetJS/js-crc32/master.svg)](https://coveralls.io/r/SheetJS/js-crc32?branch=master) diff --git a/ctest/test.js b/ctest/test.js index ace7a20..f6ccf13 100644 --- a/ctest/test.js +++ b/ctest/test.js @@ -35,7 +35,7 @@ describe('crc32 bits', function() { bits.forEach(function(i) { var msg = i[0], l = i[0].length, L = i[1]|0; if(l > 20) msg = i[0].substr(0,5) + "...(" + l + ")..." + i[0].substr(-5); - if(l > 100 && msieversion() < 7) return; + if(l > 100 && msieversion() < 9) return; it(msg, function() { if(i[2] === 1) assert.equal(X.bstr(i[0]), L); assert.equal(X.str(i[0]), i[1]|0); diff --git a/test.js b/test.js index ace7a20..f6ccf13 100644 --- a/test.js +++ b/test.js @@ -35,7 +35,7 @@ describe('crc32 bits', function() { bits.forEach(function(i) { var msg = i[0], l = i[0].length, L = i[1]|0; if(l > 20) msg = i[0].substr(0,5) + "...(" + l + ")..." + i[0].substr(-5); - if(l > 100 && msieversion() < 7) return; + if(l > 100 && msieversion() < 9) return; it(msg, function() { if(i[2] === 1) assert.equal(X.bstr(i[0]), L); assert.equal(X.str(i[0]), i[1]|0);