mirror of
https://github.com/danbulant/jose
synced 2026-05-19 04:18:52 +00:00
36 lines
987 B
JavaScript
36 lines
987 B
JavaScript
import test from 'ava'
|
|
import { root } from '../dist.mjs'
|
|
|
|
const { default: secs } = await import(`${root}/lib/secs`)
|
|
|
|
test('lib/secs.ts', (t) => {
|
|
for (const v of ['sec', 'secs', 'second', 'seconds', 's']) {
|
|
t.is(secs(`1${v}`), 1)
|
|
t.is(secs(`1 ${v}`), 1)
|
|
}
|
|
for (const v of ['minute', 'minutes', 'min', 'mins', 'm']) {
|
|
t.is(secs(`1${v}`), 60)
|
|
t.is(secs(`1 ${v}`), 60)
|
|
}
|
|
for (const v of ['hour', 'hours', 'hr', 'hrs', 'h']) {
|
|
t.is(secs(`1${v}`), 3600)
|
|
t.is(secs(`1 ${v}`), 3600)
|
|
}
|
|
for (const v of ['day', 'days', 'd']) {
|
|
t.is(secs(`1${v}`), 86400)
|
|
t.is(secs(`1 ${v}`), 86400)
|
|
}
|
|
for (const v of ['week', 'weeks', 'w']) {
|
|
t.is(secs(`1${v}`), 604800)
|
|
t.is(secs(`1 ${v}`), 604800)
|
|
}
|
|
for (const v of ['years', 'year', 'yrs', 'yr', 'y']) {
|
|
t.is(secs(`1${v}`), 31557600)
|
|
t.is(secs(`1 ${v}`), 31557600)
|
|
}
|
|
|
|
t.throws(() => secs('1 fortnight'), {
|
|
instanceOf: TypeError,
|
|
message: 'Invalid time period format',
|
|
})
|
|
})
|