Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
FEAT-595: fix dialogFlow question for unit/google flow (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
jricaldi authored Nov 21, 2019
1 parent be70fd8 commit ed15787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/bst-init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const questions = [
type: "input",
name: "dialogFlow",
message: "Please provide the path to your Dialogflow directory\n(if you don't know what this is, please take a look at https://read.bespoken.io/unit-testing/guide-google/#configuration-google-specific):",
when: (answers: any) => answers["type"].includes("unit") && answers["platform"].includes("Alexa"),
when: (answers: any) => answers["type"].includes("unit") && answers["platform"].includes("google"),
},
];

Expand Down

0 comments on commit ed15787

Please sign in to comment.