mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
10 lines
249 B
TypeScript
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'))
|
|
})
|
|
})
|
|
})
|