- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
24 lines
446 B
JavaScript
24 lines
446 B
JavaScript
var test = require('tape');
|
|
var equal = require('../');
|
|
|
|
test('equal', function (t) {
|
|
t.ok(equal(
|
|
{ a : [ 2, 3 ], b : [ 4 ] },
|
|
{ a : [ 2, 3 ], b : [ 4 ] }
|
|
));
|
|
t.end();
|
|
});
|
|
|
|
test('not equal', function (t) {
|
|
t.notOk(equal(
|
|
{ x : 5, y : [6] },
|
|
{ x : 5, y : 6 }
|
|
));
|
|
t.end();
|
|
});
|
|
|
|
test('nested nulls', function (t) {
|
|
t.ok(equal([ null, null, null ], [ null, null, null ]));
|
|
t.end();
|
|
});
|