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

15
e2e/spec/info.spec.js Normal file
View File

@@ -0,0 +1,15 @@
/* eslint-env jest */
import { imgSnapshotTest } from '../helpers/util.js'
const { toMatchImageSnapshot } = require('jest-image-snapshot')
expect.extend({ toMatchImageSnapshot })
describe('Sequencediagram', () => {
it('should render a simple info diagrams', async () => {
await imgSnapshotTest(page, `
info
showInfo
`,
{})
})
})