mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 05:49:11 -05:00
901d79dd55
Upgrade `@typescript-eslint` dependencies GitOrigin-RevId: b953e795d705b817ec3669b04cd6a289be12b20d
24 lines
881 B
TypeScript
24 lines
881 B
TypeScript
import { expect } from 'chai'
|
|
import isInFreeTrial from '../../../../../frontend/js/features/subscription/util/is-in-free-trial'
|
|
import dateformat from 'dateformat'
|
|
|
|
describe('isInFreeTrial', function () {
|
|
it('returns false when no date sent', function () {
|
|
expect(isInFreeTrial()).to.be.false
|
|
})
|
|
it('returns false when date is null', function () {
|
|
expect(isInFreeTrial(null)).to.be.false
|
|
})
|
|
it('returns false when date is in the past', function () {
|
|
expect(isInFreeTrial('2000-02-16T17:59:07.000Z')).to.be.false
|
|
})
|
|
it('returns true when date is in the future', function () {
|
|
const today = new Date()
|
|
const sevenDaysFromToday = new Date().setDate(today.getDate() + 7)
|
|
const sevenDaysFromTodayFormatted = dateformat(
|
|
sevenDaysFromToday,
|
|
'dS mmmm yyyy'
|
|
)
|
|
expect(isInFreeTrial(sevenDaysFromTodayFormatted)).to.be.true
|
|
})
|
|
})
|