From dc8f0c5755760fe8b507ab179652224ec38611de Mon Sep 17 00:00:00 2001 From: Teofilo Monteiro Date: Fri, 29 Oct 2021 08:35:41 +0200 Subject: [PATCH] Update unit tests --- index.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.test.js b/index.test.js index 4bf95fb..74b72ff 100644 --- a/index.test.js +++ b/index.test.js @@ -10,7 +10,7 @@ const defaultInputs = { tag_prefix: "v", major_pattern: "(MAJOR)", minor_pattern: "(MINOR)", - format: "${major}.${minor}.${patch}", + format: "${major}.${minor}.${patch}+${increment}", short_tags: true, bump_each_commit: false }; @@ -577,4 +577,4 @@ test('Tag prefix can include forward slash', () => { expect(result).toMatch('Version is 1.2.3+0'); repo.clean(); -}); \ No newline at end of file +});