DEV: fixes broken tests on ember-cli due to uppy

The import was not found and causing the following error:

```
Uncaught TypeError: Class extends value undefined is not a constructor or null
```
This commit is contained in:
jjaffeux
2021-08-25 18:34:17 +02:00
committed by Robin Ward
parent 506a5dc607
commit d4a418e295
4 changed files with 5 additions and 6 deletions

View File

@@ -6,7 +6,6 @@
// use the plugins we actually want.
window.Uppy = {}
Uppy.Core = require('./packages/@uppy/core/lib/index.js')
Uppy.BasePlugin = Uppy.Core.BasePlugin
Uppy.XHRUpload = require('./packages/@uppy/xhr-upload/lib/index.js')
Uppy.AwsS3 = require('./packages/@uppy/aws-s3/lib/index.js')
Uppy.AwsS3Multipart = require('./packages/@uppy/aws-s3-multipart/lib/index.js')