From cba6f72a53403456ce26e82ac8f70d346a15b443 Mon Sep 17 00:00:00 2001 From: Taras Date: Fri, 12 Aug 2022 23:55:50 +0200 Subject: [PATCH] bugfix --- tests/creationTests.ts | 5 +++++ mod.ts => tinydb.ts | 0 2 files changed, 5 insertions(+) rename mod.ts => tinydb.ts (100%) diff --git a/tests/creationTests.ts b/tests/creationTests.ts index bdfb95b..b087ec9 100644 --- a/tests/creationTests.ts +++ b/tests/creationTests.ts @@ -180,5 +180,10 @@ export const creationTests = () => { user.delete() }) + + await t.step("Clear DB", () => { + const message = userModel.huntAll() + assertStrictEquals("Successful absolute hunt!", message) + }) }) } diff --git a/mod.ts b/tinydb.ts similarity index 100% rename from mod.ts rename to tinydb.ts