From dd249c68353bcb567e823db8f887599f9cd61665 Mon Sep 17 00:00:00 2001 From: Lars Kappert Date: Fri, 29 Apr 2022 15:39:20 -0300 Subject: [PATCH] Remove `.only` test --- test/git.init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/git.init.js b/test/git.init.js index 7c792532..4f24ef45 100644 --- a/test/git.init.js +++ b/test/git.init.js @@ -175,7 +175,7 @@ test.serial('should generate correct changelog', async t => { t.regex(changelog, /\* Add file \(\w{7}\)\n\* Add file \(\w{7}\)/); }); -test.serial.only('should get the full changelog since latest major tag', async t => { +test.serial('should get the full changelog since latest major tag', async t => { const shell = factory(Shell); const gitClient = factory(Git, { options: { git: { tagMatch: '[0-9]\\.[0-9]\\.[0-9]', changelog: git.changelog } },