test for correct startblock date in frontend

This commit is contained in:
Ulf Gebhardt 2022-04-07 13:06:47 +02:00
parent 2826f970fb
commit ab7b2a7028
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -0,0 +1,9 @@
import CONFIG from './index'
describe('config/index', () => {
describe('decay start block', () => {
it('has the correct date set', () => {
expect(CONFIG.DECAY_START_TIME).toEqual(new Date('2021-05-13 17:46:31'))
})
})
})