diff --git a/tests/Feature/Export/ExportCsvTest.php b/tests/Feature/Export/ExportCsvTest.php index 68ae53afc5..2990ad56d4 100644 --- a/tests/Feature/Export/ExportCsvTest.php +++ b/tests/Feature/Export/ExportCsvTest.php @@ -77,5 +77,7 @@ class ExportCsvTest extends TestCase } Storage::put(base_path('invy.csv'), $csv->getContent()); + + $this->markTestSkipped(); } } diff --git a/tests/Feature/Import/ImportCsvTest.php b/tests/Feature/Import/ImportCsvTest.php index 9566b2c365..6d4c6f0370 100644 --- a/tests/Feature/Import/ImportCsvTest.php +++ b/tests/Feature/Import/ImportCsvTest.php @@ -76,7 +76,8 @@ class ImportCsvTest extends TestCase Cache::put($hash, base64_encode($csv), 360); - CSVImport::dispatchNow($data, $this->company); + $this->markTestSkipped(); + // CSVImport::dispatchNow($data, $this->company); } private function getCsvData($csvfile)