Jason Walton
Jason Walton
According to [this comment](https://github.com/testing-library/dom-testing-library/issues/939#issuecomment-867051545) Jest fake timers are the only one supported. I'm using jest + sinon timers, and everything was working fine for me up until the latest release....
> Aha, after some clicking and hovering, I've realized that I can grab the little ID card icon from Arne's profile page and drag THAT into the other browser tab...
Oh, I can drag an `` tag into the target above that and add my github page to my profile. I figured that out by looking at Arne's profile. Also,...
Aha! ``` Skipping ip-10-0-0-19.us-west-2.compute.internal - no node group config ``` It's finding the node groups, but it can't find any configuration for them. Why? In my case, because my node...
[Here's a concrete example](https://www.typescriptlang.org/play/#code/PTAEBUAsEsGdTqAprWSB2AXaBDANngJ6gAGAavgK5LiEAOSJoAZgE4D2AtqK0jgMaYAtGjxJBAKCQAPOu1aZQmeklAAlAPIU81WgwA8Gutnbo9SAHygAvKCMmzK0AB91fACamiAQVaschIbG0KbmVq7olAQuoJTo7kjM0OhI7gDcEhLMcYIh6Dzs4Oy+-oQAFABuVCgAXOpa1eb6sJisyQDmFgCUoHUtbejtANoAuqAA3hKg0wjMZQCEVTooPZMz6zxImJSs+aMZ6wC+yHhos2UlAQB0cJflS9SwXatTG9O827ugDyhpb9OvabHJCnVRrf4fHZ7b7VeAjA4zQ4SJFSWTyRTKBigACylEwOAARmJtLoVEEHGEbHZgqEnK47uS8pSIlE8DE4gkkil0lkcg5QJw8YSxEU7pVYXVcfiiUgSTQyf0Ot1eqBFYNRhNAedFrCXv9Np89vCtcDQec7jdYGKfk89RCtlCYctYH9-iaTmdwW9IV8hk7HqBjUdkRIgA) of `ReadonlyArray` behaving differently than Array. The `!Array.isArray()` case fails to eliminate the `ReadonlyArray` when narrowing.
I think you meant @jwalton922. I saw this in my inbox, came to this issue, started reading "my" reply, and I really didn't remember writing that. :P
Related to https://github.com/bbc/sqs-consumer/issues/234.
Also, if you call: ```ts consumer.start(); consumer.stop(); ``` you would expect your handler would not ever be called, since you have now stopped the consumer, but in fact the consumer...
@mhyllander when I give this a go on helm 3, I get: ``` $ helm secrets upgrade test --install --namespace test -f ./test.yaml -f ./test-secrets.yaml ../../helm/deploy --dry-run Error: unknown flag:...
Aha! To make this work you need to add `swagger_params_parser` to your swagger_controllers: ```yaml swagger_controllers: - onError: json_error_handler - cors - swagger_params_parser - swagger_security - _swagger_validate - express_compatibility - _router...