Skip to content

Commit

Permalink
3.0.6 fix wrong unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-hub committed Oct 3, 2023
1 parent e9bd9bf commit 79c639d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/bible-book-names-intl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bible-book-names-intl",
"version": "3.0.5",
"version": "3.0.6",
"description": "Bible Book Names in Multiple Languages",
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion packages/bible-book-names-intl/src/tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ describe('test book names', () => {
});

test('test book 1 John', () => {
expect(books[61].fullName).toBe('John');
expect(books[61].fullName).toBe('1 John');
expect(books[61].name).toBe('John');
expect(books[61].startNumber).toBe(1);
expect(books[61].verses.length).toBe(5);
expect(books[61].verses[0]).toBe(10);
Expand Down

0 comments on commit 79c639d

Please sign in to comment.