Files
mermaid/cypress/spec/info.spec.js
2019-09-11 18:53:05 +02:00

16 lines
342 B
JavaScript

/* 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', () => {
imgSnapshotTest(`
info
showInfo
`,
{})
})
})