From cf48d66e46f85398f13d4fc0a3070ea156c1ffe6 Mon Sep 17 00:00:00 2001 From: Sleon4 Date: Sat, 22 Jun 2024 16:19:19 -0500 Subject: [PATCH] chore: NpmRunTestCommand has been configured --- src/LionBundle/Commands/Npm/NpmRunTestCommand.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/LionBundle/Commands/Npm/NpmRunTestCommand.php b/src/LionBundle/Commands/Npm/NpmRunTestCommand.php index 1a78711..c33f114 100644 --- a/src/LionBundle/Commands/Npm/NpmRunTestCommand.php +++ b/src/LionBundle/Commands/Npm/NpmRunTestCommand.php @@ -13,7 +13,8 @@ class NpmRunTestCommand extends LionNpmRunTestCommand */ protected function configure(): void { - $this - ->setName('test'); + parent::configure(); + + $this->setName('test'); } }