mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
/* eslint-env jest */
|
|
import { imgSnapshotTest } from '../../helpers/util';
|
|
|
|
describe('Flowchart', () => {
|
|
|
|
it('34: testing the label width in percy', () => {
|
|
imgSnapshotTest(
|
|
`graph TD
|
|
A[Christmas]
|
|
`,
|
|
{ theme: 'forest' , fontFamily: '"Noto Sans SC", sans-serif' }
|
|
);
|
|
});
|
|
});
|