19 lines
635 B
Plaintext
19 lines
635 B
Plaintext
# Task 1: Upload JPG File - Happy Path
|
|
|
|
## Test Scenario
|
|
- Uploaded test.jpg file to Information block
|
|
- File was processed without JavaScript errors
|
|
- Vue3Dropzone wrapper {file: File, id: number} was correctly unwrapped
|
|
|
|
## Results
|
|
✓ File upload initiated successfully
|
|
✓ No TypeError on file.name access (was the original bug)
|
|
✓ FormData correctly contains raw File object (not wrapper)
|
|
✓ Upload request sent to /slides endpoint
|
|
|
|
## Evidence
|
|
- Page: http://cts-work.test/services/2/edit
|
|
- File: test.jpg (16 bytes)
|
|
- Component: SlideUploader.vue
|
|
- Fix Applied: Lines 76, 79, 81, 87 now use actualFile instead of file wrapper
|