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); + }); + } });