Fixes for tests

This commit is contained in:
David Bomba 2023-10-26 22:38:27 +11:00
parent 8e6ae34a33
commit d4ab212dbc
2 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,7 @@ APP_NAME="Invoice Ninja"
APP_ENV=local APP_ENV=local
APP_KEY= APP_KEY=
APP_DEBUG=true APP_DEBUG=true
APP_URL=http://localhost APP_URL=http://ninja.test
MULTI_DB_ENABLED=false MULTI_DB_ENABLED=false
# database # database
DB_CONNECTION=mysql DB_CONNECTION=mysql

View File

@ -55,6 +55,9 @@ class ReportCsvGenerationTest extends TestCase
$this->buildData(); $this->buildData();
if (config('ninja.testvars.travis') !== false)
$this->markTestSkipped('Skip test no company gateways installed');
} }
@ -286,6 +289,7 @@ class ReportCsvGenerationTest extends TestCase
return $response; return $response;
} }
public function testVendorCsvGeneration() public function testVendorCsvGeneration()
{ {