@@ -121,9 +121,8 @@ describe(_getStartAndEndCommands, function() {
121121 path . normalize ( `${ packageRoot } /bin/ember` ) ,
122122 'new' ,
123123 projectName ,
124- '-sg' ,
125- '-sn' ,
126- '-sb' ,
124+ '--skip-git' ,
125+ '--skip-npm' ,
127126 '-b' ,
128127 'app'
129128 ] ,
@@ -152,9 +151,8 @@ describe(_getStartAndEndCommands, function() {
152151 commandName ,
153152 'new' ,
154153 projectName ,
155- '-sg' ,
156- '-sn' ,
157- '-sb' ,
154+ '--skip-git' ,
155+ '--skip-npm' ,
158156 '-b' ,
159157 'app'
160158 ] ,
@@ -296,9 +294,8 @@ describe(_getStartAndEndCommands, function() {
296294 path . normalize ( `${ packageRoot } /bin/ember` ) ,
297295 'new' ,
298296 projectName ,
299- '-sg' ,
300- '-sn' ,
301- '-sb' ,
297+ '--skip-git' ,
298+ '--skip-npm' ,
302299 '-b' ,
303300 blueprintPath
304301 ] ,
@@ -335,12 +332,11 @@ describe(_getStartAndEndCommands, function() {
335332
336333 expect ( npxStub . args ) . to . deep . equal ( [ [
337334 [
338- `${ packageName } @3.16 ` ,
335+ `${ packageName } @latest ` ,
339336 'new' ,
340337 projectName ,
341- '-sg' ,
342- '-sn' ,
343- '-sb' ,
338+ '--skip-git' ,
339+ '--skip-npm' ,
344340 '-b' ,
345341 blueprintPath
346342 ] ,
@@ -385,9 +381,8 @@ describe(_getStartAndEndCommands, function() {
385381 path . normalize ( `${ packageRoot } /bin/ember` ) ,
386382 'new' ,
387383 projectName ,
388- '-sg' ,
389- '-sn' ,
390- '-sb' ,
384+ '--skip-git' ,
385+ '--skip-npm' ,
391386 '-b' ,
392387 baseBlueprint . name ,
393388 ...baseBlueprint . options
@@ -441,9 +436,8 @@ describe(_getStartAndEndCommands, function() {
441436 commandName ,
442437 'new' ,
443438 projectName ,
444- '-sg' ,
445- '-sn' ,
446- '-sb' ,
439+ '--skip-git' ,
440+ '--skip-npm' ,
447441 '-b' ,
448442 baseBlueprint . name ,
449443 ...baseBlueprint . options
@@ -498,9 +492,8 @@ describe(_getStartAndEndCommands, function() {
498492 commandName ,
499493 'new' ,
500494 'my-project' ,
501- '-sg' ,
502- '-sn' ,
503- '-sb' ,
495+ '--skip-git' ,
496+ '--skip-npm' ,
504497 '-b' ,
505498 baseBlueprint . name ,
506499 ...baseBlueprint . options
@@ -610,9 +603,8 @@ describe(_getStartAndEndCommands, function() {
610603 expect ( args ) . to . deep . equal ( [
611604 'new' ,
612605 projectName ,
613- '-sg' ,
614- '-sn' ,
615- '-sb' ,
606+ '--skip-git' ,
607+ '--skip-npm' ,
616608 '-b' ,
617609 'app'
618610 ] ) ;
@@ -628,9 +620,8 @@ describe(_getStartAndEndCommands, function() {
628620 expect ( args ) . to . deep . equal ( [
629621 'new' ,
630622 projectName ,
631- '-sg' ,
632- '-sn' ,
633- '-sb' ,
623+ '--skip-git' ,
624+ '--skip-npm' ,
634625 '-b' ,
635626 'addon' ,
636627 '--no-welcome'
@@ -649,9 +640,8 @@ describe(_getStartAndEndCommands, function() {
649640 'new' ,
650641 `@my-scope/${ projectName } ` ,
651642 `-dir=${ projectName } ` ,
652- '-sg' ,
653- '-sn' ,
654- '-sb' ,
643+ '--skip-git' ,
644+ '--skip-npm' ,
655645 '-b' ,
656646 'app'
657647 ] ) ;
@@ -669,9 +659,8 @@ describe(_getStartAndEndCommands, function() {
669659 expect ( args ) . to . deep . equal ( [
670660 'new' ,
671661 projectName ,
672- '-sg' ,
673- '-sn' ,
674- '-sb' ,
662+ '--skip-git' ,
663+ '--skip-npm' ,
675664 '-b' ,
676665 '/path/to/my-blueprint'
677666 ] ) ;
@@ -693,9 +682,8 @@ describe(_getStartAndEndCommands, function() {
693682 expect ( args ) . to . deep . equal ( [
694683 'new' ,
695684 projectName ,
696- '-sg' ,
697- '-sn' ,
698- '-sb' ,
685+ '--skip-git' ,
686+ '--skip-npm' ,
699687 '-b' ,
700688 'app' ,
701689 '--my-option-1' ,
0 commit comments