diff --git a/tests/Feature/Import/Quickbooks/QuickbooksTest.php b/tests/Feature/Import/Quickbooks/QuickbooksTest.php index 433a8d2c53..e6b7cfffbb 100644 --- a/tests/Feature/Import/Quickbooks/QuickbooksTest.php +++ b/tests/Feature/Import/Quickbooks/QuickbooksTest.php @@ -41,13 +41,14 @@ class QuickbooksTest extends TestCase { parent::setUp(); + $this->markTestSkipped('Skip test for GH Actions'); - if (config('ninja.testvars.travis') !== false) { - $this->markTestSkipped('Skip test for GH Actions'); - } - elseif(Company::whereNotNull('quickbooks')->count() == 0){ - $this->markTestSkipped('No need to run this test on Travis'); - } + // if (config('ninja.testvars.travis') !== false) { + // $this->markTestSkipped('Skip test for GH Actions'); + // } + // elseif(Company::whereNotNull('quickbooks')->count() == 0){ + // $this->markTestSkipped('No need to run this test on Travis'); + // } $this->faker = \Faker\Factory::create(); }