Hacker News new | ask | show | jobs
by Longwelwind 89 days ago
Those kind of tools are futile endeavors to me.

If you want to use that for unit testing, then I think it would be better to mock the calls to AWS services. That way you test only your implementation, in an environment you control.

If you want to use that for local development, then I think it would be better to provision a test environment (using Terraform or any other IaC tool). That way you don't run the risk of a bug slipping into prod because the emulator has a different behaviour than the real service.

1 comments

Also would like to add, that you might experiance bugs on "local env" while it will work on AWS.