UNPKG

antler

Version:
10 lines (7 loc) 284 B
import { AntlerError } from '../src/antler-error'; describe('AntlerError', () => { it('should construct an error with level prefix', () => { const instance = new AntlerError('Something went wrong!'); expect(instance.message).toBe('ERROR Something went wrong!'); }); });