@@ -29,7 +29,6 @@ import {
2929} from '@angular-devkit/schematics' ;
3030import { NodePackageInstallTask } from '@angular-devkit/schematics/tasks' ;
3131import { Schema as ComponentOptions } from '../component/schema' ;
32- import { Schema as E2eOptions } from '../e2e/schema' ;
3332import { NodeDependencyType , addPackageJsonDependency } from '../utility/dependencies' ;
3433import { latestVersions } from '../utility/latest-versions' ;
3534import { applyLintFix } from '../utility/lint-fix' ;
@@ -282,11 +281,6 @@ export default function (options: ApplicationOptions): Rule {
282281 : join ( normalize ( newProjectRoot ) , strings . dasherize ( options . name ) ) ;
283282 const sourceDir = `${ appDir } /src/app` ;
284283
285- const e2eOptions : E2eOptions = {
286- relatedAppName : options . name ,
287- rootSelector : appRootSelector ,
288- } ;
289-
290284 return chain ( [
291285 addAppToWorkspaceFile ( options , appDir ) ,
292286 mergeWith (
@@ -338,7 +332,6 @@ export default function (options: ApplicationOptions): Rule {
338332 } ) ,
339333 move ( sourceDir ) ,
340334 ] ) , MergeStrategy . Overwrite ) ,
341- options . minimal ? noop ( ) : schematic ( 'e2e' , e2eOptions ) ,
342335 options . skipPackageJson ? noop ( ) : addDependenciesToPackageJson ( options ) ,
343336 options . lintFix ? applyLintFix ( appDir ) : noop ( ) ,
344337 ] ) ;
0 commit comments