We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8085fc8 commit bd4d256Copy full SHA for bd4d256
src/data/markdown/docs/20 jslib/01 jslib/01 aws/SecretsManagerClient/00 listSecrets().md
@@ -34,7 +34,7 @@ export default function () {
34
// List the secrets the AWS authentication configuration
35
// gives us access to, and verify the test secret exists.
36
const secrets = secretsManager.listSecrets();
37
- if (!secrets.filter((s) => s.name === testSecretName).length == 0) {
+ if (secrets.filter((s) => s.name === testSecretName).length == 0) {
38
exec.test.abort('test secret not found');
39
}
40
@@ -44,4 +44,4 @@ export default function () {
44
45
_A k6 script that will list a user's secrets from AWS secrets manager_
46
47
-</CodeGroup>
+</CodeGroup>
0 commit comments