diff options
Diffstat (limited to 'test/reading')
-rw-r--r-- | test/reading/test.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/reading/test.ts b/test/reading/test.ts index a2524de..c1e7de4 100644 --- a/test/reading/test.ts +++ b/test/reading/test.ts @@ -1,8 +1,9 @@ -import { api, assertEquals } from "../base.ts"; +import { api, assertEquals, formatCaseIndex } from "../base.ts"; import cases from "./cases.ts"; -cases.forEach(({input, output}) => { - Deno.test(`Sentence reading - ${input}`, async () => { +cases.forEach(({input, output}, i) => { + // if (i != 1) return; + Deno.test(`Sentence reading ${formatCaseIndex(i, cases.length)} - ${input}`, async () => { // TODO: use sentence reading and tags var sentence = await api.sentence(input); assertEquals(sentence.furigana("refold-tools"), output); |