From ab7b2a7028ccf75c39abe7b8029b0fd8799be080 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 7 Apr 2022 13:06:47 +0200 Subject: [PATCH] test for correct startblock date in frontend --- frontend/src/config/index.spec.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 frontend/src/config/index.spec.js diff --git a/frontend/src/config/index.spec.js b/frontend/src/config/index.spec.js new file mode 100644 index 000000000..3c4c7865e --- /dev/null +++ b/frontend/src/config/index.spec.js @@ -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')) + }) + }) +})