@@ -13,10 +13,10 @@ let createProjectCalledWithForce: boolean;
1313let validateProjectCallsCount : number ;
1414const dummyArgs = [ "dummyArgsString" ] ;
1515const expectedFlavorChoices = [
16- { key : "Angular" , description : "Learn more at https://angular.io/ " } ,
17- { key : "Vue.js" , description : "Learn more at https://vuejs .org/" } ,
18- { key : "Plain TypeScript" , description : "Learn more at https://www.typescriptlang. org/" } ,
19- { key : "Plain JavaScript" , description : "Learn more at https://www.javascript.com/ " }
16+ { key : "Angular" , description : "Learn more at https://nativescript.org/angular " } ,
17+ { key : "Vue.js" , description : "Learn more at https://nativescript .org/vue " } ,
18+ { key : "Plain TypeScript" , description : "Learn more at https://nativescript. org/typescript " } ,
19+ { key : "Plain JavaScript" , description : "Use NativeScript without any framework " }
2020] ;
2121const expectedTemplateChoices = [
2222 { key : "Hello World" , description : "A Hello World app" } ,
@@ -85,12 +85,12 @@ describe("Project commands tests", () => {
8585 answers [ "First, what will be the name of your app?" ] = opts . projectNameAnswer ;
8686 }
8787 if ( opts . flavorAnswer ) {
88- const flavorQuestion = opts . projectNameAnswer ? "Next" : "First" + " , which flavor would you like to use? ";
88+ const flavorQuestion = opts . projectNameAnswer ? "Next" : "First, which style of NativeScript project would you like to use: " ;
8989 answers [ flavorQuestion ] = opts . flavorAnswer ;
9090 questionChoices [ flavorQuestion ] = expectedFlavorChoices ;
9191 }
9292 if ( opts . templateAnswer ) {
93- const templateQuestion = opts . projectNameAnswer ? "Finally" : "Next" + " , which template would you like to start from? ";
93+ const templateQuestion = opts . projectNameAnswer ? "Finally" : "Next, which template would you like to start from: " ;
9494 answers [ templateQuestion ] = opts . templateAnswer ;
9595 questionChoices [ templateQuestion ] = expectedTemplateChoices ;
9696 }
0 commit comments