npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

alexa-skill-tester

v1.1.2

Published

Unit testing framework for Amazon Alexa skills

Downloads

9

Readme

alexa-skill-tester

Unit testing framework for testing requests/responses for Amazon Alexa skills

The Alexa Skill Tester is a nice way to perform unit testing for Amazon Alexa skills that run in AWS lambda.

This framework uses a data-driven approach. You create sample *.json files to represent the requests that should be sumitted to the skill.handler under test. The tester loads the request file, invokes the skill handler, and then compares the response to the contents of a matching *.response.json file.

To use the skill-tester follow these steps:

  1. Install mocha (a popular unit-testing framework) and alexa-skill-tester as devDependencies. npm install -D mocha alexa-skill-tester
  2. Create a ./test directory with a bootstrap module in it
    var ast = require("alexa-skill-tester");
    var path = require("path");
    var module_under_test = require("../index");
    
    describe("Event tests", function(done) {
        ast(module_under_test.handler, path.resolve(__dirname, "./events"), done);
    });
  3. Create a "./events" directory underneath the test directory.
  4. Place requests .json files in the ./tests/events folder.
  5. From the top-level directory of the project execute mocha
    $ node_modules/.bin/mocha

At this point, you should see errors telling you that no response files were available. You can either create the response file manually and save it as *.response.json or you can instruct alexa-skill-tester to auto-save the responses for you.

$ SAVE_RESPONSES=true node_modules/.bin/mocha

You will still get warnings the first time, however, the process wil save the response into the right location so that when you run the tests again, they should all pass.

The alexa-skill-tester will sets a global variable global.TEST_MODE=true when it runs your tests so that your application can choose to mock out other dependencies as necessary.

Tips

I like to setup a sub-directory for each state supported by the Alexa skill I'm testing so that I can separate the events into those sub-directories.