https://github.com/boneskull/angular-mocks-node
AngularJS' ngMock module provided as a CommonJS module.
https://github.com/boneskull/angular-mocks-node
Last synced: 6 months ago
JSON representation
AngularJS' ngMock module provided as a CommonJS module.
- Host: GitHub
- URL: https://github.com/boneskull/angular-mocks-node
- Owner: boneskull
- License: mit
- Created: 2014-11-26T09:11:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-28T02:38:41.000Z (about 11 years ago)
- Last Synced: 2024-11-15T08:39:51.582Z (about 1 year ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular-mocks-node
AngularJS' [ngMock](https://docs.angularjs.org/api/ngMock) module provided as a CommonJS module.
Paired with [angular-node](https://www.npmjs.org/package/angular-node), you can use this module to take advantage of `ngMock` on the server side. Run your tests headlessly!
## Rationale
The [angular-mocks](https://www.npmjs.org/package/angular-mocks) module provides a couple convenience functions (`module()`, `inject()`) which are not present if certain variables do not exist in the global context (`window`).
In NodeJS, there's very little in the global context, and there's no `window`.
This module sets the table for `ngMock`, and allows `module()` and `inject()` to be exposed on the `angular.mock` object.
## Example
```js
var ngMock = require('angular-mocks-node');
describe('my suite', function() {
beforeEach(ngMock.module('myModule'));
it('should do such-and-such', ngMock.inject(function(MyService) {
// make assertions
});
});
```
## Notes
The `angular.mock` object is both exported by the `angular-mocks-node` module, as well as exposed on the `angular` object:
```js
var angular = require('angular-node');
var ngMock = require('angular-mocks-node');
angular.mock === ngMock; // true
```
## Supported Test Frameworks
- [Mocha](http://mochajs.org)
- [Jasmine](http://jasmine.github.io)
- Anything else, really, but you won't get the convenience functions, because `ngMock` is written that way.
## Maintainer
[Christopher Hiller](http://boneskull.github.io)
## License
MIT