Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mightyhorst/george.js

George.js is a testing and sequence diagram library
https://github.com/mightyhorst/george.js

chai mochajs sequence-diagram

Last synced: about 1 month ago
JSON representation

George.js is a testing and sequence diagram library

Awesome Lists containing this project

README

        

# george.js
George.js is a testing and sequence diagram library

### installation
```javascript
bower install georgejs
```

### usage
```html

```
### usage via cdn
```html

```

### example tests.js
```javascript
mocha.setup('bdd');
var assert = chai.assert;

describe('example bdd suite', function() {
it('should equal 1', function() {
var num = 1;
assert.equal(num, 1);
});
});
```

### example sequence.html
```html


A->B: Message
A-->B: Message
B->A: Message
B-->A: Message


C->B: Message
C-->B: Message
B->A: Message
B-->A: Message

```