-
AWS Step Functions
In this post I’ll walk you through on how to use Step Functions (with an example) for the most common tasks, while giving a quick overview of JSONPath. Overview AWS Step Functions is a service that allows you to model complex workflows with little to no code. It is a state machine and uses a…
-
Stubbing with Sinon in 5 mins
Sinon is a library that provides fakes, spies, stubs and mocks (collectively called fakes) — each of which have their place in testing. We’re going to focus on stubs in this post, covering : What is a Stub ? So first off, what is a stub ? Simply, a stub allows us to change and…