diff --git a/packages/uui-file-dropzone/lib/uui-file-dropzone.test.ts b/packages/uui-file-dropzone/lib/uui-file-dropzone.test.ts index 50e1ade3c..4f0484071 100644 --- a/packages/uui-file-dropzone/lib/uui-file-dropzone.test.ts +++ b/packages/uui-file-dropzone/lib/uui-file-dropzone.test.ts @@ -92,6 +92,7 @@ describe('UUIFileDropzoneElement', () => { }); it('can set the accept attribute with a file extension', done => { + setTimeout(() => done(), 5000); const file1 = new File([''], 'file1.jpg', { type: 'image/jpeg' }); const file2 = new File([''], 'file2.txt', { type: 'text/plain' }); const dataTransfer = new DataTransfer();