Missing file parameter
dhtmdgkr123 opened this issue · 2 comments
Describe the bug
run test code and generate document but file pararmeter is missing
To Reproduce
Steps to reproduce the behavior:
- php artisan enlighten:migrate:fresh
- php artisan test
- php artisan enlighten:export
Expected behavior
Want fileparameter to document
my test code append file but file parameter content not found
$requestUrl = route('updateTeamLogo', [
'teamSlug' => $team->slug,
]);
$tryUpdateLogo = $this->postJson($requestUrl, [
'logo_image' => UploadedFile::fake()->create('test.png', 2000),
])->assertOk();
@dhtmdgkr123 hello! I just finished this fix/feature, you'll find it in dev
for now, although we'll be re-deploying soon. You need to re-run the migrations or add a new "request_files" field to the example_requests table.
I hope this helps.
@dhtmdgkr123 hello! I just finished this fix/feature, you'll find it in
dev
for now, although we'll be re-deploying soon. You need to re-run the migrations or add a new "request_files" field to the example_requests table.I hope this helps.
@jeffochoa
Thank u :)