diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-07-15 21:52:57 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-07-15 21:52:57 +0200 |
commit | 8e179a43e909ce4683f753a90bb3505630f05ad8 (patch) | |
tree | 5e46594af33ba7f82d1bd5ea954b99b4a92d0093 /test/deinflection/test.ts | |
parent | 3dc9484fc81db8f3c8ffd4ebb4bab042e66c6214 (diff) |
implement alternate writings (failing tests down to 500)
Diffstat (limited to 'test/deinflection/test.ts')
-rw-r--r-- | test/deinflection/test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/deinflection/test.ts b/test/deinflection/test.ts index fac757e..0dfcdf9 100644 --- a/test/deinflection/test.ts +++ b/test/deinflection/test.ts @@ -1,10 +1,10 @@ import cases from "./cases.ts"; -import { core } from '../base.ts'; +import { core, formatCaseIndex } from '../base.ts'; import { Tag, TokenTag } from "../../search/tags.ts"; import { recursiveValues } from "../../util/object.ts"; -cases.forEach(({ input, mustHave, mustNotHave, force }) => { - Deno.test(`deinflection - ${input}`, async () => { +cases.forEach(({ input, mustHave, mustNotHave, force }, i) => { + Deno.test(`Deinflection ${formatCaseIndex(i, cases.length)} - ${input}`, async () => { var terms = await core.search.terms(input); if (terms.length == 0) |