Sha256: da096ff438f55f5b206e844a8b0a0e693dd96471f72e4672d11bd13b2f4ca502

Contents?: true

Size: 468 Bytes

Versions: 97

Compression:

Stored size: 468 Bytes

Contents

var test = require('tape');
var vm = require('vm');
var fs = require('fs');
var src = fs.readFileSync(__dirname + '/../../index.js', 'utf8');

test('u8a without globals', function (t) {
    var c = {
        module: { exports: {} },
    };
    c.exports = c.module.exports;
    vm.runInNewContext(src, c);
    var TA = c.module.exports;
    var ua = new(TA.Uint8Array)(5);
    
    t.equal(ua.length, 5);
    ua[1] = 256 + 55;
    t.equal(ua[1], 55);
    t.end();
});

Version data entries

97 entries across 95 versions & 21 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.18.0 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.18.2 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.16.1 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.15.2 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.18.4 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.18.1 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.14.0 test/dummy/node_modules/typedarray/test/server/undef_globals.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/typedarray/test/server/undef_globals.js
tang-0.2.1 spec/tang_app/node_modules/typedarray/test/server/undef_globals.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/typedarray/test/server/undef_globals.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/typedarray/test/server/undef_globals.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/typedarray/test/server/undef_globals.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/typedarray/test/server/undef_globals.js
tang-0.2.0 spec/tang_app/node_modules/typedarray/test/server/undef_globals.js
tang-0.1.0 spec/tang_app/node_modules/typedarray/test/server/undef_globals.js
tang-0.0.9 spec/tang_app/node_modules/typedarray/test/server/undef_globals.js
enju_library-0.3.8 spec/dummy/node_modules/typedarray/test/server/undef_globals.js
ilog-0.4.1 node_modules/typedarray/test/server/undef_globals.js