{
name: 'needsE2eTesting',
type: () => (isFeatureFlagsUsed ? null : 'select'),
+ hint: language.needsE2eTesting.hint,
message: language.needsE2eTesting.message,
initial: 0,
choices: (prev, answers) => [
},
"needsE2eTesting": {
"message": "Add an End-to-End Testing Solution?",
+ "hint": "- Use arrow-keys. Return to submit.",
"selectOptions": {
"negative": { "title": "No" },
"cypress": {
},
"needsE2eTesting": {
"message": "Ajouter une solution de test de bout en bout (e2e)\u00a0?",
+ "hint": "- Utilisez les flèches et appuyez sur la touche Entrée pour valider",
"selectOptions": {
"negative": { "title": "Non" },
"cypress": {
},
"needsE2eTesting": {
"message": "是否要引入一款端到端(End to End)测试工具?",
+ "hint": "- 使用箭头切换按Enter确认。",
"selectOptions": {
"negative": { "title": "不需要" },
"cypress": {
import * as path from 'node:path'
interface LanguageItem {
+ hint?: string
message: string
invalidMessage?: string
dirForPrompts?: {