You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/browser-pack/test/unicode.js

33 lines
760 B
JavaScript

var test = require('tape');
var pack = require('../');
test('unicode', function (t) {
t.plan(5);
var p = pack({ raw: true });
var src = '';
p.on('data', function (buf) { src += buf });
p.on('end', function () {
var r = Function(['Ṫ'], 'return ' + src)(t);
t.equal(r('xyz')(5), 555);
t.equal(r('xyz')(5), 555);
t.throws(function() {
r('zzz');
}, /Cannot find module 'zzz'/);
});
p.write({
id: 'abc',
source: 'Ṫ.equal(require("./xyz")(3), 333)',
entry: true,
deps: { './xyz': 'xyz' }
});
p.write({
id: 'xyz',
source: 'Ṫ.ok(true); module.exports=function(ñ){return ñ*111}'
});
p.end();
});