diff --git a/tests/Feature/Export/ExportCompanyTest.php b/tests/Feature/Export/ExportCompanyTest.php new file mode 100644 index 000000000000..189b1b47ddb8 --- /dev/null +++ b/tests/Feature/Export/ExportCompanyTest.php @@ -0,0 +1,49 @@ +withoutMiddleware( + ThrottleRequests::class + ); + + // $this->faker = \Faker\Factory::create(); + + $this->makeTestData(); + + $this->withoutExceptionHandling(); + } + + public function testCompanyExport() + { + CompanyExport::dispatchNow($this->company); + } +}