mirror of
https://github.com/axios/axios.git
synced 2026-04-11 02:11:50 +08:00
* chore: small fixes to tests * feat: transitional move to vitests * feat: moving unit tests in progress * feat: moving more unit tests over * feat: more tests moved * feat: updated more sections of the http test * chore: wip http tests * chore: wip http tests * chore: more http tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: remove un-needed docs * chore: update package lock * chore: update lock
14 lines
427 B
JavaScript
14 lines
427 B
JavaScript
/* eslint-env mocha */
|
|
import isCancel from '../../../lib/cancel/isCancel';
|
|
import CanceledError from '../../../lib/cancel/CanceledError';
|
|
|
|
describe('isCancel', function () {
|
|
it('returns true if value is a CanceledError', function () {
|
|
expect(isCancel(new CanceledError())).toBe(true);
|
|
});
|
|
|
|
it('returns false if value is not a CanceledError', function () {
|
|
expect(isCancel({ foo: 'bar' })).toBe(false);
|
|
});
|
|
});
|