Merge branch 'develop' into bug/4592_fix_newLine_padding_class_diagram

This commit is contained in:
Sidharth Vinod
2023-07-17 15:11:39 +05:30
committed by GitHub
9 changed files with 143 additions and 251 deletions

View File

@@ -200,6 +200,27 @@ describe('Entity Relationship Diagram', () => {
);
});
it('should render entities with attributes that begin with asterisk', () => {
imgSnapshotTest(
`
erDiagram
BOOK {
int *id
string name
varchar(99) summary
}
BOOK }o..o{ STORE : soldBy
STORE {
int *id
string name
varchar(50) address
}
`,
{ loglevel: 1 }
);
cy.get('svg');
});
it('should render entities with keys', () => {
renderGraph(
`