Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mightyhorst/george.js
- Owner: mightyhorst
- Created: 2017-06-23T04:18:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-05T06:26:02.000Z (over 6 years ago)
- Last Synced: 2024-12-11T10:20:12.616Z (about 2 months ago)
- Topics: chai, mochajs, sequence-diagram
- Language: CSS
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```