mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
for travis
This commit is contained in:
parent
a83099dad8
commit
9b09cbe183
@ -58,6 +58,7 @@ return [
|
||||
'password' => 'password',
|
||||
'stripe' => env('STRIPE_KEYS',''),
|
||||
'paypal' => env('PAYPAL_KEYS', ''),
|
||||
'travis' => env('TRAVIS', false),
|
||||
],
|
||||
|
||||
'contact' => [
|
||||
|
@ -29,6 +29,10 @@ class ClientModelTest extends TestCase
|
||||
|
||||
public function testPaymentMethods()
|
||||
{
|
||||
|
||||
if(config('ninja.testvars.travis'))
|
||||
$this->markTestSkipped('Skip test for Travis');
|
||||
|
||||
$amount = 40;
|
||||
|
||||
$company_gateways = $this->client->getSetting('company_gateways');
|
||||
|
Loading…
x
Reference in New Issue
Block a user