Files
mermaid/src/diagrams/mindmap/info.spc.js
2022-07-18 16:00:03 +02:00

15 lines
295 B
JavaScript

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);
});
});