From eb862a580ad33d661f80137e1f86a71b5b8fdb0a Mon Sep 17 00:00:00 2001 From: Jason Wall Date: Thu, 6 Aug 2020 20:48:03 -0400 Subject: [PATCH] one mor fix for that test --- app/db/src/app/common/bible-reference.spec.ts | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app/db/src/app/common/bible-reference.spec.ts b/app/db/src/app/common/bible-reference.spec.ts index ea9eb6b1..69abffb5 100644 --- a/app/db/src/app/common/bible-reference.spec.ts +++ b/app/db/src/app/common/bible-reference.spec.ts @@ -296,14 +296,11 @@ describe('Reference', () => { }); } - const refs = [ - { src: '2 sam 3:4-6:8', actual: '2 Samuel 3:4 - 6:8' }, - // { "src": "gen 50 - ex 2", "actual": "Genesis 50:1 - Exodus 2:*" }, - ]; + const refs = [{ src: '2 sam 3:4-6:8', actual: '2 Samuel 3:4 - 6:8' }]; - // for (const ref of refs) { - // it('Should parse the reference: ' + ref.src, () => { - // expect(new BibleReference(ref.src).toString()).toBe(ref.actual); - // }); - // } + for (const ref of refs) { + it('Should parse the reference: ' + ref.src, () => { + expect(new BibleReference(ref.src).toString()).toBe(ref.actual); + }); + } });