Nick

Results 582 comments of Nick

What web app are you talking about?

What would be the steps for this? Just adding an HTTP request to a server?

Can you provide more details about how to got to this error?

Can you disable and re-enable testing in the console?

Is your action built using Dialogflow or Actions Builder? If the latter, you should use the [Assistant Conversation testing lib](https://github.com/actions-on-google/assistant-conversation-testing-nodejs).

Do these things work if you were to test using the simulator, or a physical device?

You accomplish this using [contexts](https://cloud.google.com/dialogflow/es/docs/contexts-overview).

An example [is something like](https://developers.google.com/assistant/conversational/df-asdk/dialogflow/fulfillment?hl=en#create_functions_to_handle_requests): ``` app.intent('Default Fallback Intent', (conv) => { conv.data.fallbackCount++; // Provide two prompts before ending game if (conv.data.fallbackCount === 1) { conv.contexts.set(DONE_YES_NO_CONTEXT, 5); conv.ask('Are you done...

Seems like the `getIsConversationEnded` is asserting that `this.getLatestActionsBuilderEvent` is not undefined, which may be a wrong assumption. I'm going to try to replicate this behavior.

Unfortunately I cannot reproduce this error basing my test off `samples/skeleton_test.ts`: ``` /* eslint-disable node/no-unpublished-import */ /* eslint-disable prefer-arrow-callback */ import 'mocha'; import {ActionsOnGoogleTestManager} from '../src/index'; const PROJECT_ID = '...';...