@@ -13,10 +13,10 @@ let createProjectCalledWithForce: boolean;
13
13
let validateProjectCallsCount : number ;
14
14
const dummyArgs = [ "dummyArgsString" ] ;
15
15
const 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 " }
20
20
] ;
21
21
const expectedTemplateChoices = [
22
22
{ key : "Hello World" , description : "A Hello World app" } ,
@@ -85,12 +85,12 @@ describe("Project commands tests", () => {
85
85
answers [ "First, what will be the name of your app?" ] = opts . projectNameAnswer ;
86
86
}
87
87
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: " ;
89
89
answers [ flavorQuestion ] = opts . flavorAnswer ;
90
90
questionChoices [ flavorQuestion ] = expectedFlavorChoices ;
91
91
}
92
92
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: " ;
94
94
answers [ templateQuestion ] = opts . templateAnswer ;
95
95
questionChoices [ templateQuestion ] = expectedTemplateChoices ;
96
96
}
0 commit comments