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.
2 parents 83a15e0 + a1ee08d commit 8ef43dcCopy full SHA for 8ef43dc
packages/integration-tests/src/test-projects/seed-test-project/amplify/seed/seed.ts
@@ -27,7 +27,8 @@ Amplify.configure(outputFile);
27
const dataClient = generateClient<Schema>();
28
29
const username1 = '[email protected]';
30
-const password1 = `T3st_Passw0rd*${crypto.randomInt(1, 100)}`;
+const randomSuffix = crypto.randomBytes(4).toString('hex');
31
+const password1 = `T3st_Passw0rd*${randomSuffix}`;
32
33
const user1 = await createAndSignUpUser({
34
username: username1,
0 commit comments