https://github.com/stevehobbsdev/blog-azuretesting
Repository for the "Testing against Azure Table Storage with Node.JS, Mocha and Sinon" blog post on Steve's Coding Blog
https://github.com/stevehobbsdev/blog-azuretesting
Last synced: 3 months ago
JSON representation
Repository for the "Testing against Azure Table Storage with Node.JS, Mocha and Sinon" blog post on Steve's Coding Blog
- Host: GitHub
- URL: https://github.com/stevehobbsdev/blog-azuretesting
- Owner: stevehobbsdev
- Created: 2015-08-07T10:49:44.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-07T12:54:50.000Z (almost 11 years ago)
- Last Synced: 2024-12-31T20:15:54.666Z (over 1 year ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
#Testing against Azure Table Storage with Node.JS, Mocha and Sinon
This is the code repository for the blog post available at http://stevescodingblog.co.uk/testing-against-azure-table-storage-with-node-js-mocha-and-sinon
## Setup (optional)
If you would like to actually run the app against a real Azure account, add your Azure Table Storage configuration a configuration file inside the `/config/default.json` file:
```json
{
"azure": {
"accountName": "*your account name*",
"accountKey": "*your account key*"
}
}
```
This step is not necessary if you just want to run the tests.
## Testing
To run the tests: `$ npm test`