Closed
Description
Noticed the following deprecation notice in our tests.
- AdapterLoader should load S3Adapter from direct passing
- Passing AWS credentials to this adapter is now DEPRECATED and will be removed in a future version See: https://github.com/parse-server-modules/parse-server-s3-adapter#aws-credentials for details
The test being in AdapterLoader.spec.js
it("should load S3Adapter from direct passing", (done) => {
var s3Adapter = new S3Adapter("key", "secret", "bucket")
expect(() => {
var adapter = loadAdapter(s3Adapter, FilesAdapter);
expect(adapter).toBe(s3Adapter);
}).not.toThrow();
done();
})
We'll need to correct this before it's removed and potentially breaks the tests.
Metadata
Metadata
Assignees
Labels
No labels