diff --git a/tests/Feature/Export/ProfitAndLossReportTest.php b/tests/Feature/Export/ProfitAndLossReportTest.php new file mode 100644 index 000000000000..2cd0c7755046 --- /dev/null +++ b/tests/Feature/Export/ProfitAndLossReportTest.php @@ -0,0 +1,54 @@ +withoutMiddleware( + ThrottleRequests::class + ); + + $this->makeTestData(); + + $this->withoutExceptionHandling(); + } + + private function buildReportData() + { + $company = Company::factory()->create([ + 'account_id' => $this->account->id, + ]); + + } + + public function testExportCsv() + { + + } +}