A tool for unit-testing Alexa skills.
Write tests in YAML, like this:
---
- test: "Sequence 01. Test scenario: launch request, no further interaction."
- LaunchRequest: # LaunchRequest is not an utterance but a request type and "reserved" word
- response.outputSpeech.ssml: "Here's your fact"
- response.card.type: "Simple"
- response.card.title: "Space Facts"
- response.card.content: "/.*/" # Regular expression indicating any text will match
Read our getting started guide here.
Learn about common use-cases here.
For more in-depth info, read the full specification
- Multi-turn conversations
- Dialog Interface support
- AudioPlayer interface support
- Entity resolution
- Explicit intent and slot setting
- Wildcard support for non-regex expressions
- Support for setting address and permissions
- Explicit SessionEndedRequest
- Support for goto and flow control
- Support for testing dynamo
- Callbacks for filtering payloads programmatically
- Virtual device support
- Much better documentation!