gradido/backend/src/config/index.test.ts
2023-03-31 12:48:09 +02:00

10 lines
249 B
TypeScript

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-0000'))
})
})
})