From 28f5a0df39a789230fe8062242fb33fa20f1c89a Mon Sep 17 00:00:00 2001 From: Loki Sinclair Date: Thu, 8 Aug 2024 17:16:47 +0100 Subject: [PATCH 1/2] testing --- tests/Feature/ActivityLogTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Feature/ActivityLogTest.php b/tests/Feature/ActivityLogTest.php index a2a29b8c4..5e0e44c0d 100644 --- a/tests/Feature/ActivityLogTest.php +++ b/tests/Feature/ActivityLogTest.php @@ -41,6 +41,11 @@ public function setUp(): void ]; } + public function test_that_false_is_true(): void + { + $this->assertTrue(false); + } + /** * List all ActivityLogs * From 2269e7068b1e9be48260bc1e742d604f0b8f3a28 Mon Sep 17 00:00:00 2001 From: Loki Sinclair Date: Thu, 8 Aug 2024 17:20:25 +0100 Subject: [PATCH 2/2] add bail option to stop running on failure --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 71b8168b6..5c1cba50b 100644 --- a/composer.json +++ b/composer.json @@ -101,7 +101,7 @@ "vendor/bin/phpcs --standard=PSR1 app" ], "pest": [ - "php -d memory_limit=512M vendor/bin/pest" + "php -d memory_limit=512M vendor/bin/pest --bail" ], "lint": [ "vendor/bin/pint --preset psr12"