Update ER Diagram to have keys and comments.

Update ER Diagrams to have keys and comments.
This commit is contained in:
RonaldZielaznicki
2021-08-09 11:28:46 -04:00
committed by Ronald
parent 2ccd9feae7
commit 3383da514a
5 changed files with 190 additions and 26 deletions

View File

@@ -186,4 +186,15 @@ describe('Entity Relationship Diagram', () => {
cy.get('svg');
});
it('should render entities with keys and comments', () => {
renderGraph(
`
erDiagram
BOOK { string title PK "comment"}
`,
{ logLevel : 1 }
);
cy.get('svg');
});
});