]> zoso.dev Git - buffer.git/commitdiff
tests
authorFeross Aboukhadijeh <feross@feross.org>
Sat, 9 Jan 2016 15:29:55 +0000 (16:29 +0100)
committerFeross Aboukhadijeh <feross@feross.org>
Sat, 9 Jan 2016 15:29:55 +0000 (16:29 +0100)
test/typedarray-to-buffer.js

index e683b1a9f6237176edbd385c38e78b34bf7679b1..3d02210f825fe2b5a304053efeb49d6ed8543d25 100644 (file)
@@ -20,7 +20,7 @@ test('convert to buffer from Uint8Array', function (t) {
 })
 
 test('convert to buffer from another arrayview type (Uint32Array)', function (t) {
-  if (typeof Uint32Array !== 'undefined' && B.TYPED_ARRAY_SUPPORT) {
+  if (typeof Uint32Array !== 'undefined' && B.TYPED_ARRAY_SUPPORT !== false) {
     var arr = new Uint32Array([1, 2, 3])
     arr = toBuffer(arr)
 
@@ -37,7 +37,7 @@ test('convert to buffer from another arrayview type (Uint32Array)', function (t)
 })
 
 test('convert to buffer from ArrayBuffer', function (t) {
-  if (typeof Uint32Array !== 'undefined' && B.TYPED_ARRAY_SUPPORT) {
+  if (typeof Uint32Array !== 'undefined' && B.TYPED_ARRAY_SUPPORT !== false) {
     var arr = new Uint32Array([1, 2, 3]).subarray(1, 2)
     arr = toBuffer(arr)