Skip to content
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

Added instructions for running the tests. Fixes #49. #50

Merged
merged 1 commit into from
Dec 14, 2015
Merged
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
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,51 @@ Contributions welcome!

See [CONTRIBUTING.md](https://github.com/GoogleCloudPlatform/nodejs-docs-samples/blob/master/CONTRIBUTING.md)

### Running the tests

1. `git clone git@github.com:GoogleCloudPlatform/nodejs-docs-samples.git`
1. `cd nodejs-docs-samples`
1. `npm install`
1. Start Redis
1. Start Memcached
1. Set the `TEST_PROJECT_ID` environment variable to id of your project
1. `npm test`

Since the tests use [Mocha.js](https://mochajs.org/), you can use the `--grep`
option to run only the tests that match a provided pattern. The `--invert`
option causes the matched tests to be excluded instead of included.

__Run only the tests that match a pattern:__


```
npm test -- -- --grep <pattern>
```

__Only run the tests for the `datastore` sample:__

```
npm test -- -- --grep datastore
```

__Skip the tests that match a pattern:__

```
npm test -- -- --grep <pattern> --invert
```

__Run all but the `datastore` tests:__

```
npm test -- -- --grep datastore --invert
```

__Skip the tests that require Redis and Memcached:__

```
npm test -- -- --grep "express-memcached-session|redis" --invert
```

## Licensing

Apache Version 2.0
Expand Down