* DOC-4423: add TCEs for various command pages
* fix problematic doctest
from redis docs for ACL DELUSER:
Delete all the specified ACL users and terminate all the connections
that are authenticated with such users
Nodejs complains: Warning: Detected unsettled top-level await
which in turn gives the error code 13 in the workflow
await client.auth({ username: 'test-user' ...});
// deleting the user that is currently logged in -> bad
await client.sendCommand(['ACL', 'DELUSER', 'test-user']);
await client.quit()
fix: authenticate with the default user before deleting the test-user
---------
Co-authored-by: Nikolay Karadzhov <nkaradzhov89@gmail.com>