From d828150670dcdb62345aa979752f212f6a5aa221 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 27 May 2021 09:16:41 +1000 Subject: [PATCH] Fixes for tests --- tests/Feature/Export/ExportCompanyTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Feature/Export/ExportCompanyTest.php b/tests/Feature/Export/ExportCompanyTest.php index 82bb57e9f318..feacc7b955bf 100644 --- a/tests/Feature/Export/ExportCompanyTest.php +++ b/tests/Feature/Export/ExportCompanyTest.php @@ -40,6 +40,10 @@ class ExportCompanyTest extends TestCase $this->makeTestData(); $this->withoutExceptionHandling(); + + if (! config('ninja.testvars.stripe')) { + $this->markTestSkipped('Cannot write to TMP - skipping'); + } } public function testCompanyExport()