mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
37 lines
811 B
JavaScript
37 lines
811 B
JavaScript
|
import { imgSnapshotTest } from '../../helpers/util';
|
||
|
|
||
|
describe('Error Diagrams', () => {
|
||
|
it('should render a simple ER diagram', () => {
|
||
|
imgSnapshotTest(
|
||
|
`
|
||
|
error
|
||
|
`,
|
||
|
{ logLevel: 1 }
|
||
|
);
|
||
|
});
|
||
|
|
||
|
it('should render error diagram for actual errors', () => {
|
||
|
imgSnapshotTest(
|
||
|
`
|
||
|
flowchart TD
|
||
|
A[Christmas] --|Get money| B(Go shopping)
|
||
|
`,
|
||
|
{ logLevel: 1 }
|
||
|
);
|
||
|
});
|
||
|
|
||
|
it('should render error for wrong ER diagram', () => {
|
||
|
imgSnapshotTest(
|
||
|
`
|
||
|
erDiagram
|
||
|
ATLAS-ORGANIZATION ||--|{ ATLAS-PROJECTS : "has many"
|
||
|
ATLAS-PROJECTS ||--|{ MONGODB-CLUSTERS : "has many"
|
||
|
ATLAS-PROJECTS ||--|{ ATLAS-TEAMS : "has many"
|
||
|
MONGODB-CLUSTERS ||..|{
|
||
|
ATLAS-TEAMS ||..|{
|
||
|
`,
|
||
|
{ logLevel: 1 }
|
||
|
);
|
||
|
});
|
||
|
});
|