From 4d41a61730c695d430606823ae5b44175e55eb8b Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Mon, 25 Dec 2023 23:54:57 -0500 Subject: [PATCH] test(cucumber): removed the deprecated `publishQuiet` flag --- cucumber.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cucumber.mjs b/cucumber.mjs index 3a5f94f8..9c120c28 100644 --- a/cucumber.mjs +++ b/cucumber.mjs @@ -1,7 +1,6 @@ const base = { formatOptions: {snippetInterface: 'async-await'}, - import: ['test/integration/features/**/*.js'], - publishQuiet: true + import: ['test/integration/features/**/*.js'] }; export default base;