Skip to content

Commit

Permalink
Merge pull request #50 from GoogleCloudPlatform/test-instructions
Browse files Browse the repository at this point in the history
Added instructions for running the tests. Fixes #49.
  • Loading branch information
jmdobry committed Dec 14, 2015
2 parents 2568fc2 + 03f438e commit dade986
Showing 1 changed file with 45 additions and 0 deletions.
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

0 comments on commit dade986

Please sign in to comment.