one mor fix for that test

This commit is contained in:
Jason Wall 2020-08-06 20:48:03 -04:00
parent ed30f45bde
commit eb862a580a

View File

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