This should probably be based off Ralyxa, rather than core. But it'd be nice to have some command-line-runnable tests that can go ask the AVS if they got the right result (or you'd stub the correct response).
describe 'Saying hello' do
it 'Alexa responds with "yo, sup"' do
response = Ralyxa.invokeIntent('HelloWorldIntent')
expect(response.speech).to eq "yo, sup"
end
end