diff --git a/tests/Feature/ClientModelTest.php b/tests/Feature/ClientModelTest.php index 2157a61695..f4a1ab71e2 100644 --- a/tests/Feature/ClientModelTest.php +++ b/tests/Feature/ClientModelTest.php @@ -30,7 +30,7 @@ class ClientModelTest extends TestCase $this->makeTestData(); if (config('ninja.testvars.travis') !== false) { - $this->markTestSkipped('Skip test for Travis'); + $this->markTestSkipped('Skip test for GH Actions'); } if (! config('ninja.testvars.stripe')) { diff --git a/tests/Feature/EInvoice/PeppolTest.php b/tests/Feature/EInvoice/PeppolTest.php index 21d3c2f4f1..d5ef0a96b6 100644 --- a/tests/Feature/EInvoice/PeppolTest.php +++ b/tests/Feature/EInvoice/PeppolTest.php @@ -48,6 +48,10 @@ class PeppolTest extends TestCase protected function setUp(): void { parent::setUp(); + + if (config('ninja.testvars.travis') !== false) { + $this->markTestSkipped('Skip test for GH Actions'); + } $this->makeTestData(); diff --git a/tests/Feature/Inventory/InventoryManagementTest.php b/tests/Feature/Inventory/InventoryManagementTest.php index 3c5dc52ca3..d93683a218 100644 --- a/tests/Feature/Inventory/InventoryManagementTest.php +++ b/tests/Feature/Inventory/InventoryManagementTest.php @@ -39,7 +39,7 @@ class InventoryManagementTest extends TestCase ); if (config('ninja.testvars.travis') !== false) { - $this->markTestSkipped('Skip test for Travis'); + $this->markTestSkipped('Skip test for GH Actions'); } } diff --git a/tests/Feature/LiveDesignTest.php b/tests/Feature/LiveDesignTest.php index 62f5c1bb59..cac2fed0ed 100644 --- a/tests/Feature/LiveDesignTest.php +++ b/tests/Feature/LiveDesignTest.php @@ -39,7 +39,7 @@ class LiveDesignTest extends TestCase ); if (config('ninja.testvars.travis') !== false) { - $this->markTestSkipped('Skip test for Travis'); + $this->markTestSkipped('Skip test for GH Actions'); } } diff --git a/tests/Feature/PreviewTest.php b/tests/Feature/PreviewTest.php index 183b721bae..0d6ac48990 100644 --- a/tests/Feature/PreviewTest.php +++ b/tests/Feature/PreviewTest.php @@ -36,7 +36,7 @@ class PreviewTest extends TestCase ); if (config('ninja.testvars.travis') !== false) { - $this->markTestSkipped('Skip test for Travis'); + $this->markTestSkipped('Skip test for GH Actions'); } } diff --git a/tests/Integration/DownloadHistoricalInvoiceTest.php b/tests/Integration/DownloadHistoricalInvoiceTest.php index 85730cb7ae..55697c6a01 100644 --- a/tests/Integration/DownloadHistoricalInvoiceTest.php +++ b/tests/Integration/DownloadHistoricalInvoiceTest.php @@ -35,7 +35,7 @@ class DownloadHistoricalInvoiceTest extends TestCase $this->makeTestData(); if (config('ninja.testvars.travis') !== false) { - $this->markTestSkipped('Skip test for Travis'); + $this->markTestSkipped('Skip test for GH Actions'); } } diff --git a/tests/Pdf/PdfGenerationTest.php b/tests/Pdf/PdfGenerationTest.php index 77dc5e7b96..b2b5aad374 100644 --- a/tests/Pdf/PdfGenerationTest.php +++ b/tests/Pdf/PdfGenerationTest.php @@ -26,7 +26,7 @@ class PdfGenerationTest extends TestCase parent::setUp(); if (config('ninja.testvars.travis') !== false) { - $this->markTestSkipped('Skip test for Travis'); + $this->markTestSkipped('Skip test for GH Actions'); } }