Skip to content

Commit a1405c8

Browse files
authored
fix: typo in needsE2eTesting choices params (#184)
1 parent f117f77 commit a1405c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ async function init() {
209209
type: () => (isFeatureFlagsUsed ? null : 'select'),
210210
message: 'Add an End-to-End Testing Solution?',
211211
initial: 0,
212-
choices: (prev, anwsers) => [
212+
choices: (prev, answers) => [
213213
{ title: 'No', value: false },
214214
{
215215
title: 'Cypress',
216-
description: anwsers.needsVitest
216+
description: answers.needsVitest
217217
? undefined
218218
: 'also supports unit testing with Cypress Component Testing',
219219
value: 'cypress'

0 commit comments

Comments
 (0)