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