An open API service indexing awesome lists of open source software.

https://github.com/dimitarchristoff/jaster

buster.js style test suite helper for jasmine-node
https://github.com/dimitarchristoff/jaster

Last synced: about 1 year ago
JSON representation

buster.js style test suite helper for jasmine-node

Awesome Lists containing this project

README

          

jaster
======

buster.js style test suite helper for jasmine-node. because, tests can be easy to read and nicely managed.

```javascript
var suite = require('jaster');

suite('I like to test things', {
beforeAll: function(){
this.counter = 0;
},
beforeEach: function(){
this.counter++;
},
'It should pass': function(){
expect(true).toBe(true);
},
'It should fail': function(){
expect(true).toBe(false);
},
'// It should be disabled': function(){
expect("not to run").toBeTruthy();
}
});
```