Victor Chang
Results
1
comments of
Victor Chang
We've found a workaround: ``` const ecsClientMock = mockClient(ECSClient); const ecsClient = (ecsClientMock as unknown) as ECSClient; ``` We can mock the result of commands with `ecsClientMock.on(ListTaskscommand).resolves({ ... })` but...