2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-17 19:21:29 +03:00

Adding a type guard for AxiosError (#2949)

Co-authored-by: Jason Kwok <JasonHK@users.noreply.github.com>
This commit is contained in:
Jason Kwok
2020-11-03 16:01:07 +08:00
committed by GitHub
parent 768825589f
commit f472e5da5f
7 changed files with 49 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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);
});
});