node_modules.jsonify.test.stringify.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libjoynr-js Show documentation
Show all versions of libjoynr-js Show documentation
JOYnr JavaScript libjoynr-js
var test = require('tap').test;
var json = require('../');
var garbage = require('garbage');
test('stringify', function (t) {
for (var i = 0; i < 50; i++) {
var obj = garbage(50);
t.equal(
json.stringify(obj),
JSON.stringify(obj)
);
}
t.end();
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy