mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-18 14:59:53 +02:00
17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
/* eslint-env jest */
|
|
import { imgSnapshotTest } from '../helpers/util.js'
|
|
const { toMatchImageSnapshot } = require('jest-image-snapshot')
|
|
|
|
expect.extend({ toMatchImageSnapshot })
|
|
|
|
describe('Pie Chart simple', () => {
|
|
it('should render a simple Pie chart diagram', async () => {
|
|
await imgSnapshotTest(page, `
|
|
pie
|
|
"Ash" : 40
|
|
"Bat" : 50
|
|
`,
|
|
{})
|
|
})
|
|
})
|