how to test error files in uppy uploader?

349 Views Asked by At

I tried to check an error uploading to aws3. The only manipulation I success to check is after I dropped the files, to change the name of one of them.There are another options to check uploading error files?

1

There are 1 best solutions below

0
On

If you mean after the the aws uploader tried to upload the file, then use the .on("upload-error") function.

.on('upload-error', (error) => {
    console.log(error);
  })