From 592a095544f3a7967e73fc6d200e818a1551279d 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 d08a7eb91..ea5f6dafe 100644 --- a/backend/src/util/decay.ts +++ b/backend/src/util/decay.ts @@ -54,4 +54,4 @@ async function calculateDecayWithInterval( return result } -export default { calculateDecay, calculateDecayWithInterval } +export { calculateDecay, calculateDecayWithInterval }