mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
17 lines
404 B
JavaScript
17 lines
404 B
JavaScript
/* eslint-env jest */
|
|
const { toMatchImageSnapshot } = require('jest-image-snapshot')
|
|
|
|
expect.extend({ toMatchImageSnapshot })
|
|
|
|
describe('Sequencediagram', () => {
|
|
it('should render a simple sequence diagrams', async () => {
|
|
const url = 'http://localhost:9000/webpackUsage.html'
|
|
|
|
await page.goto(url)
|
|
|
|
const image = await page.screenshot()
|
|
|
|
expect(image).toMatchImageSnapshot()
|
|
})
|
|
})
|