0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/unit/modules/utils/parseInterval.spec.ts
Juan Picado 69d7df20d8
build: enable pnp yarn2 (#2253)
* chore: enable pnp yarn

* chore: ignore pnp

* fix type issues on run eslint

* add missing dependency and fix some errors

* fix most of the errors

some were just disabled, already fixed in master

* add missing jest-config

* update jest@26 align with other deps

* add missing @babel/register

* clean up

* use yarn node

* use yarn node on release

* chore: add husky 6

* chore: add husky 6

* chore: lint-stage

* chore: test

* chore: add hook git

* chore: test

* chore: test

* update deps

* chore: fix commit lint

* fix docker run

* update git ignore
2021-05-13 23:13:57 +02:00

34 lines
992 B
TypeScript

import assert from 'assert';
import { parseInterval } from '../../../../src/lib/utils';
describe('Parse interval', () => {
function addTest(str, res) {
test('parse ' + str, () => {
if (res === null) {
assert.throws(function () {
// eslint-disable-next-line no-console
console.log(parseInterval(str));
});
} else {
assert.strictEqual(parseInterval(str), res);
}
});
}
addTest(12345, 12345000);
addTest('1000', 1000000);
addTest('1.5s', 1500);
addTest('25ms', 25);
addTest('2m', 2 * 1000 * 60);
addTest('3h', 3 * 1000 * 60 * 60);
addTest('0.5d', 0.5 * 1000 * 60 * 60 * 24);
addTest('0.5w', 0.5 * 1000 * 60 * 60 * 24 * 7);
addTest('1M', 1000 * 60 * 60 * 24 * 30);
addTest('5s 20ms', 5020);
addTest('1y', 1000 * 60 * 60 * 24 * 365);
addTest('1y 5', null);
addTest('1m 1m', null);
addTest('1m 1y', null);
addTest('1y 1M 1w 1d 1h 1m 1s 1ms', 34822861001);
addTest(' 5s 25ms ', 5025);
});