diff options
author | HampusM <hampus@hampusmat.com> | 2021-07-22 21:00:49 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-07-22 21:00:49 +0200 |
commit | 827013d79853fb4648b7c7781f9827ec1ca8b5b9 (patch) | |
tree | 8ef23635048b39f4bd3acd0654f8dbaa8067dc9d /test | |
parent | 8520e2547b8ef2b10bfd92f554465e5ae14062e0 (diff) |
Fixed the name of the findAsync unit test
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/misc.unit.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/misc.unit.test.ts b/test/unit/misc.unit.test.ts index 4e54ac4..f076ec1 100644 --- a/test/unit/misc.unit.test.ts +++ b/test/unit/misc.unit.test.ts @@ -5,7 +5,7 @@ import { EnvironmentVariables } from "../util"; const env = process.env as EnvironmentVariables; describe("Miscellaneous functions", () => { - describe("FindAsync", () => { + describe("findAsync", () => { const data: Promise<string>[] = [ new Promise((resolve) => { resolve("hello!"); |