mirror of
https://github.com/axios/axios.git
synced 2026-04-11 14:21:59 +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
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
import { describe, it } from 'vitest';
|
|
import assert from 'assert';
|
|
import composeSignals from '../../lib/helpers/composeSignals.js';
|
|
|
|
describe('helpers::composeSignals', () => {
|
|
const runIfAbortController = typeof AbortController === 'function' ? it : it.skip;
|
|
|
|
runIfAbortController('should abort when any of the signals abort', () => {
|
|
let called;
|
|
|
|
const controllerA = new AbortController();
|
|
const controllerB = new AbortController();
|
|
|
|
const signal = composeSignals([controllerA.signal, controllerB.signal]);
|
|
|
|
signal.addEventListener('abort', () => {
|
|
called = true;
|
|
});
|
|
|
|
controllerA.abort(new Error('test'));
|
|
|
|
assert.ok(called);
|
|
});
|
|
|
|
runIfAbortController('should abort on timeout', async () => {
|
|
const signal = composeSignals([], 100);
|
|
|
|
await new Promise((resolve) => {
|
|
signal.addEventListener('abort', resolve);
|
|
});
|
|
|
|
assert.match(String(signal.reason), /timeout of 100ms exceeded/);
|
|
});
|
|
|
|
it('should return undefined if signals and timeout are not provided', () => {
|
|
const signal = composeSignals([]);
|
|
|
|
assert.strictEqual(signal, undefined);
|
|
});
|
|
});
|