1
0
Fork 0
salty-dog/test/error/TestError.ts

35 lines
1.1 KiB
TypeScript

import { expect } from 'chai';
import { kebabCase } from 'lodash';
import { InvalidArgumentError } from '../../src/error/InvalidArgumentError';
import { NotFoundError } from '../../src/error/NotFoundError';
const errors = [
InvalidArgumentError,
NotFoundError,
];
describe('errors', () => {
for (const errorType of errors) {
describe(kebabCase(errorType.name), () => {
it('should have a message', () => {
const err = new errorType();
expect(err.message).to.not.equal('');
});
it('should include nested errors in the stack trace', () => {
const inner = new Error('inner error');
const err = new errorType('outer error', inner);
expect(err.stack).to.include('inner', 'inner error message').and.include('outer', 'outer error message');
});
it('should have the nested error', () => {
const inner = new Error('inner error');
const err = new errorType('outer error', inner);
expect(err.cause()).to.equal(inner);
expect(err.length).to.equal(1);
});
});
}
});