alexa-conversation icon indicating copy to clipboard operation
alexa-conversation copied to clipboard

Framework to easily test your Alexa skills functionally by creating a conversation with your skill.

Results 7 alexa-conversation issues
Sort by recently updated
recently updated
newest added

this is a small fix. arguments is an object that looks like the following: `{ '0': { name: 'Name', appId: 'amzn1.ask.skill.SomeAppId', app: { handler: [Function] }, fixSpaces: true } }`...

Hi, I am looking into using your library to test my company's Alexa Skill and I am wondering why you rely on underscore? I have looked through your code and...

Due to the way the conversation is executed mocha hooks like beforeEach are not actually executed before tests run For example in the following code the `UserStorage` class has `get`...

I think there's a problem in the example: ``` .shouldMatch(/(Hello|Bye)/) .shouldNotMatch(/Wrong answer/) ``` should be ``` .shouldMatch(/(Hello|Bye)/) .shouldNotMatch(/Wrong answer/) ``` or you'll get SyntaxError: Invalid regular expression flags I'm also...

Hi, The [official request object](https://developer.amazon.com/docs/custom-skills/request-and-response-json-reference.html#request-format) from Amazon contains a Context object that is guaranteed to be there on all requests, while the session object is not included for certain requests....

enhancement

Provide plaintext response when there is PlainText rather than SSML response