- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
20 lines
356 B
JavaScript
Executable File
20 lines
356 B
JavaScript
Executable File
'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();
|
|
});
|