info diagram to show version of mermaid, bugfixes for gantt chart

This commit is contained in:
Knut Sveidqvist
2019-06-15 14:29:26 +02:00
parent 4cb0b9174b
commit 5667694652
12 changed files with 874 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
/* eslint-env jasmine */
describe('when parsing an info graph it', function () {
var ex
beforeEach(function () {
ex = require('./parser/info').parser
ex.yy = require('./infoDb')
})
it('should handle an info definition', function () {
var str = `info
showInfo`
ex.parse(str)
})
})