diff --git a/tests/Feature/Bank/BankTransactionTest.php b/tests/Feature/Bank/BankTransactionTest.php index 816bffee888c..d6a524b2f95b 100644 --- a/tests/Feature/Bank/BankTransactionTest.php +++ b/tests/Feature/Bank/BankTransactionTest.php @@ -56,6 +56,11 @@ class BankTransactionTest extends TestCase public function testMatchBankTransactionValidationShouldPass() { + + if (config('ninja.testvars.travis') !== false) { + $this->markTestSkipped('Skip test for Github Actions'); + } + $data = []; $bi = BankIntegrationFactory::create($this->company->id, $this->user->id, $this->account->id);