HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall_forms/buyercall/node_modules/browserify/test/standalone.js
var browserify = require('../');
var vm = require('vm');
var test = require('tap').test;

test('standalone', function (t) {
    t.plan(3);
    
    var b = browserify(__dirname + '/standalone/main.js', {
        standalone: 'stand-test'
    });
    b.bundle(function (err, src) {
        t.test('window global', function (t) {
            t.plan(2);
            var c = {
                window: {},
                done : done(t)
            };
            vm.runInNewContext(src + 'window.standTest(done)', c);
        });
        t.test('CommonJS', function (t) {
            t.plan(2);
            var exp = {};
            var c = {
                module: { exports: exp },
                exports: exp,
                done : done(t)
            };
            vm.runInNewContext(src + 'module.exports(done)', c);
        });
        t.test('RequireJS', function (t) {
            t.plan(2);
            var c = {
                define: function (dependencies, fn) {
                    fn()(done(t));
                }
            };
            c.define.amd = true;
            vm.runInNewContext(src, c);
        });
    });
});

test('A.B.C standalone', function (t) {
    t.plan(3);
    
    var b = browserify(__dirname + '/standalone/main.js', {
        standalone: 'A.B.C'
    });
    b.bundle(function (err, src) {
        t.test('window global', function (t) {
            t.plan(2);
            var c = { window: {} };
            vm.runInNewContext(src, c);
            c.window.A.B.C(done(t));
        });
        t.test('CommonJS', function (t) {
            t.plan(2);
            var exp = {};
            var c = {
                module: { exports: exp },
                exports: exp
            };
            vm.runInNewContext(src, c);
            c.module.exports(done(t));
        });
        t.test('RequireJS', function (t) {
            t.plan(2);
            var c = {
                define: function (dependencies, fn) {
                    fn()(done(t));
                }
            };
            c.define.amd = true;
            vm.runInNewContext(src, c);
        });
    });
});

function done(t) {
    return function (one, two) {
        t.equal(one, 1);
        t.equal(two, 2);
        t.end();
    };
}