Christer Eliasi-Swahn
Christer Eliasi-Swahn
Client.query(config, values, callback) sets config.callback, causing subsequent invocations to fail
Client.query(), when using promises (no callback), will via normalizeQueryConfig() set config.callback, which causes subsequent invocations of Client.query() with the same config to fail silently - no error message, just returning...
The package seems to have an undeclared dependency on qs. This is the output when running it (with Node, yarn, and TypeScript in my case): ``` keycloak-mock tried to access...
The `yq` install on GitHub Windows runners is really slow. But it is only needed when `flutter-version-file` is specified. This PR makes it conditional so that it is only installed...
The `yq` install is really slow. Suggest changing the action step to only install it if needed, i.e. if `flutter-version-file` is used.
@visibleForTesting incorrectly warns when used in a test that is not located in the test/ directory
We organize our tests in different directories, and for tests located under a directory not named 'test' the analyzer incorrectly warns about accessing the a member annotated with @visibleForTesting. Given...