add test to ensure that the date of the decay start block cannot be changed by mistake

This commit is contained in:
Moriz Wahl 2022-02-10 08:46:56 +01:00 committed by Ulf Gebhardt
parent 68d7d5e883
commit 37354a010a
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'))
})
})
})