Skip to content

Alexa Skill Test Framework #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.history
dist
.coverage
.nyc_output

# Dependency directories
/**/node_modules
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ Contains an `http` server using `express`, which you can use with `ngrok` or `se

There are a few scripts inside `package.json` for building and deploying your lambda function using the `ask-cli`. Check the [Developer tasks section below](#developer-tasks) for more details.

- Tests
## Tests

The project contains automated tests using [jest](https://jestjs.io/). Check the `__tests__` folder.
The project uses [Brian MacIntosh's Alexa Skill Test Framework](https://github.com/BrianMacIntosh/alexa-skill-test-framework) and Mocha for testing. The tests are under the `test` folder. It also uses [Instanbul/nyc](https://github.com/istanbuljs/nyc) for code coverage.

```bash
$ npm run test
Expand All @@ -77,7 +77,7 @@ If you want to include code coverage, run
$ npm run test:coverage
```

You can also start `jest` in watch mode:
You can also start `mocha` in watch mode:

```bash
$ npm run test:watch
Expand Down
36 changes: 0 additions & 36 deletions __tests__/BuiltIn.spec.ts

This file was deleted.

12 changes: 0 additions & 12 deletions __tests__/Errors.spec.ts

This file was deleted.

12 changes: 0 additions & 12 deletions __tests__/Hello.spec.ts

This file was deleted.

12 changes: 0 additions & 12 deletions __tests__/Launch.spec.ts

This file was deleted.

163 changes: 0 additions & 163 deletions __tests__/helpers.ts

This file was deleted.

Loading