From e7213611eb5fbc802e5db94510b9808312882e5e Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Fri, 1 Oct 2021 13:16:00 +0200 Subject: [PATCH] try to get the backend building again --- backend/src/util/decay.test.ts | 1 - backend/src/util/decay.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/util/decay.test.ts b/backend/src/util/decay.test.ts index cffaab38e..645cdf6f0 100644 --- a/backend/src/util/decay.test.ts +++ b/backend/src/util/decay.test.ts @@ -1,6 +1,5 @@ import { calculateDecay } from './decay' - describe('utils/decay', () => { it.skip('has base 0.99999997802044727', async () => { const now = new Date() diff --git a/backend/src/util/decay.ts b/backend/src/util/decay.ts index 896632a3e..3d39b198f 100644 --- a/backend/src/util/decay.ts +++ b/backend/src/util/decay.ts @@ -52,4 +52,4 @@ async function calculateDecayWithInterval( return result } -export default { calculateDecay, calculateDecayWithInterval } +export { calculateDecay, calculateDecayWithInterval }