13 lines
291 B
JavaScript
Raw Normal View History

2023-07-07 17:21:18 +05:30
import { imgSnapshotTest } from '../../helpers/util.ts';
2020-08-16 13:01:45 +02:00
describe('Flowchart', () => {
it('34: testing the label width in percy', () => {
imgSnapshotTest(
`graph TD
A[Christmas]
`,
{ theme: 'forest', fontFamily: '"Noto Sans SC", sans-serif' }
2020-08-16 13:01:45 +02:00
);
});
});