#2632 Adding proper handling of cardinalities

This commit is contained in:
Knut Sveidqvist
2022-01-16 15:14:59 +01:00
parent 7abe279b4a
commit 91ec41762a
3 changed files with 120 additions and 0 deletions

View File

@@ -110,4 +110,9 @@ describe('XSS', () => {
cy.wait(1000);
cy.get('#the-malware').should('not.exist');
});
it('should sanitize cardinalities properly in class diagrams', () => {
cy.visit('http://localhost:9000/xss18.html');
cy.wait(1000);
cy.get('#the-malware').should('not.exist');
});
});