- 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
20 lines
356 B
JavaScript
20 lines
356 B
JavaScript
'use strict';
|
|
|
|
var test = require('tape');
|
|
|
|
var E = require('../');
|
|
var R = require('../range');
|
|
var Ref = require('../ref');
|
|
var S = require('../syntax');
|
|
var T = require('../type');
|
|
|
|
test('errors', function (t) {
|
|
t.equal(E, Error);
|
|
t.equal(R, RangeError);
|
|
t.equal(Ref, ReferenceError);
|
|
t.equal(S, SyntaxError);
|
|
t.equal(T, TypeError);
|
|
|
|
t.end();
|
|
});
|