From d1da32a30f8cf24f12c8b2053d70c5b0acc41ec8 Mon Sep 17 00:00:00 2001 From: AslanRules <39661498+AslanRules@users.noreply.github.com> Date: Sun, 26 Jan 2025 23:27:50 -0500 Subject: [PATCH] quantitative once more --- convert/tests/convertConfigSAB.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/convert/tests/convertConfigSAB.test.ts b/convert/tests/convertConfigSAB.test.ts index 0a9d35f53..876b78a78 100644 --- a/convert/tests/convertConfigSAB.test.ts +++ b/convert/tests/convertConfigSAB.test.ts @@ -84,7 +84,7 @@ if (programType === 'DAB') { } else if (programType === 'SAB') { test('convertConfig: parse traits', () => { const result = parseTraits(document, 'dummy', 1); - expect(Object.keys(result)).toHaveLength(6); + expect(Object.keys(result)).toHaveLength(7); }); test('convertConfig: parse book collections', () => { @@ -100,7 +100,7 @@ if (programType === 'DAB') { expect(bc.languageCode).not.toBe(''); expect(bc.languageName).not.toBe(''); - expect(Object.keys(bc.features)).toHaveLength(39); + expect(Object.keys(bc.features)).toHaveLength(40); expect(bc.books).not.toHaveLength(0); for (const bk in bc.books) { @@ -196,7 +196,7 @@ if (programType === 'DAB') { test('convertConfig: parse features', () => { const result = parseFeatures(document, 1); - expect(Object.keys(result)).toHaveLength(135); + expect(Object.keys(result)).toHaveLength(137); }); test('convertConfig: parse background images', () => {