mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-04 16:16:41 +02: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 }
|
|
);
|
|
});
|
|
});
|