mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-14 04:49:44 +02:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
/* eslint-env jest */
|
|
import { imgSnapshotTest } from '../../helpers/util.js'
|
|
|
|
describe('Sequencediagram', () => {
|
|
it('should render a simple info diagrams', () => {
|
|
imgSnapshotTest(`
|
|
info
|
|
showInfo
|
|
`,
|
|
{})
|
|
})
|
|
})
|