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 cfe281d commit a1ee08dCopy full SHA for a1ee08d
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*${Math.random()}`;
+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