aleios-cloud / sls-test-tools

Custom Jest Assertions for Serverless integration testing.
MIT License
192 stars 20 forks source link

Allow configuring AWS endpoint #31

Open smbkr opened 2 years ago

smbkr commented 2 years ago

Hi,

I'd like to use this library with Localstack to avoid deploying to a real AWS account. Doing so would require overriding the endpoint config option for the AWS SDK, e.g.

const eventBridge = new EventBridge({
    endpoint: 'http://localstack_main:4566',
})

Would you consider supporting this?