aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/exponential-backoff/src/jitter/no/no.jitter.spec.ts
blob: 1d5652489e53e532b6ab5c2bf477e4716e4d9c8b (plain)
1
2
3
4
5
6
7
8
9
import { noJitter } from './no.jitter';

describe(`Testing ${noJitter.name}`, () => {
    it(`when calling #noJitter with a delay,
    it returns the same delay`, () => {
        const delay = 100;
        expect(noJitter(delay)).toBe(delay);
    })
})