mirror of
https://github.com/tenrok/axios.git
synced 2026-05-18 12:39:44 +03:00
f472e5da5f
Co-authored-by: Jason Kwok <JasonHK@users.noreply.github.com>
21 lines
757 B
JavaScript
21 lines
757 B
JavaScript
var createError = require('../../../lib/core/createError');
|
|
var enhanceError = require('../../../lib/core/enhanceError');
|
|
var isAxiosError = require('../../../lib/helpers/isAxiosError');
|
|
|
|
describe('helpers::isAxiosError', function () {
|
|
it('should return true if the error is created by core::createError', function () {
|
|
expect(isAxiosError(createError('Boom!', { foo: 'bar' })))
|
|
.toBe(true);
|
|
});
|
|
|
|
it('should return true if the error is enhanced by core::enhanceError', function () {
|
|
expect(isAxiosError(enhanceError(new Error('Boom!'), { foo: 'bar' })))
|
|
.toBe(true);
|
|
});
|
|
|
|
it('should return false if the error is a normal Error instance', function () {
|
|
expect(isAxiosError(new Error('Boom!')))
|
|
.toBe(false);
|
|
});
|
|
});
|