diff --git a/client-test-apps/js/api-model-relationship-app/src/__tests__/utils/amplifyCLI.ts b/client-test-apps/js/api-model-relationship-app/src/__tests__/utils/amplifyCLI.ts index 6124aeab1d..767d90a70e 100644 --- a/client-test-apps/js/api-model-relationship-app/src/__tests__/utils/amplifyCLI.ts +++ b/client-test-apps/js/api-model-relationship-app/src/__tests__/utils/amplifyCLI.ts @@ -273,10 +273,6 @@ export class AmplifyCLI { console.log(`Using CLI path '${cliPath}'`); console.log(`Project root: '${this.projectRoot}'`); const chain = spawn(cliPath, cliArgs, { cwd: this.projectRoot, env, disableCIDetection: s.disableCIDetection }) - .wait('Do you want to continue with Amplify Gen 1?') - .sendConfirmYes() - .wait('Why would you like to use Amplify Gen 1?') - .sendCarriageReturn() .wait('Enter a name for the project') .sendLine(s.name) .wait('Initialize the project with the above configuration?') diff --git a/packages/amplify-e2e-core/src/init/initProjectHelper.ts b/packages/amplify-e2e-core/src/init/initProjectHelper.ts index 85e899e377..a5bc8afc46 100644 --- a/packages/amplify-e2e-core/src/init/initProjectHelper.ts +++ b/packages/amplify-e2e-core/src/init/initProjectHelper.ts @@ -56,10 +56,6 @@ export function initJSProjectWithProfile(cwd: string, settings?: Partial { const chain = spawn(getCLIPath(), ['init'], { cwd, stripColors: true }) - .wait('Do you want to continue with Amplify Gen 1?') - .sendConfirmYes() - .wait('Why would you like to use Amplify Gen 1?') - .sendCarriageReturn() .wait('Enter a name for the project') .sendLine(s.name) .wait('Initialize the project with the above configuration?') @@ -262,10 +250,6 @@ export function initProjectWithAccessKey( CLI_DEV_INTERNAL_DISABLE_AMPLIFY_APP_CREATION: '1', }, }) - .wait('Do you want to continue with Amplify Gen 1?') - .sendConfirmYes() - .wait('Why would you like to use Amplify Gen 1?') - .sendCarriageReturn() .wait('Enter a name for the project') .sendLine(s.name) .wait('Initialize the project with the above configuration?') diff --git a/packages/amplify-e2e-tests/src/init-special-cases/index.ts b/packages/amplify-e2e-tests/src/init-special-cases/index.ts index d31e60b710..d2490ad33f 100644 --- a/packages/amplify-e2e-tests/src/init-special-cases/index.ts +++ b/packages/amplify-e2e-tests/src/init-special-cases/index.ts @@ -51,10 +51,6 @@ async function initWorkflow(cwd: string, settings: { accessKeyId: string; secret CLI_DEV_INTERNAL_DISABLE_AMPLIFY_APP_CREATION: '1', }, }) - .wait('Do you want to continue with Amplify Gen 1?') - .sendConfirmYes() - .wait('Why would you like to use Amplify Gen 1?') - .sendCarriageReturn() .wait('Enter a name for the project') .sendCarriageReturn() .wait('Initialize the project with the above configuration?')