fix(tests): Interaction - Security strict, other

This commit is contained in:
Sidharth Vinod
2022-10-04 16:55:46 +08:00
parent 2a9e56439e
commit 750f647b0d
3 changed files with 13 additions and 14 deletions

View File

@@ -103,24 +103,24 @@ describe('Interaction', () => {
cy.visit(url); cy.visit(url);
}); });
it('should handle a click on a node without a bound function', () => { it('should handle a click on a node without a bound function', () => {
cy.get('body').find('g#flowchart-Function-4').click(); cy.contains('Function1').parents('.node').click();
cy.get('.created-by-click').should('not.exist'); cy.get('.created-by-click').should('not.exist');
}); });
it('should handle a click on a node with a bound function where the node starts with a number', () => { it('should handle a click on a node with a bound function where the node starts with a number', () => {
cy.get('body').find('g[id="flowchart-1Function-10"]').click(); cy.contains('1Function').parents('.node').click();
cy.get('.created-by-click').should('not.exist'); cy.get('.created-by-click').should('not.exist');
}); });
it('should handle a click on a node with a bound url', () => { it('should handle a click on a node with a bound url', () => {
cy.get('body').find('g#flowchart-URL-5').click(); cy.contains('URL1').find('.node').click();
cy.location().should(({ href }) => { cy.location().should(({ href }) => {
expect(href).to.eq('http://localhost:9000/webpackUsage.html'); expect(href).to.eq('http://localhost:9000/webpackUsage.html');
}); });
}); });
it('should handle a click on a node with a bound url where the node starts with a number', () => { it('should handle a click on a node with a bound url where the node starts with a number', () => {
cy.get('body').find('g[id="flowchart-2URL-11"]').click(); cy.contains('2URL').find('.node').click();
cy.location().should(({ href }) => { cy.location().should(({ href }) => {
expect(href).to.eq('http://localhost:9000/webpackUsage.html'); expect(href).to.eq('http://localhost:9000/webpackUsage.html');
}); });
@@ -159,18 +159,17 @@ describe('Interaction', () => {
}); });
it('should handle a click on a node with a bound function', () => { it('should handle a click on a node with a bound function', () => {
cy.get('body').find('g#flowchart-Function-4').click(); cy.contains('Function1').parents('.node').click();
cy.get('.created-by-click').should('not.exist'); cy.get('.created-by-click').should('not.exist');
}); });
it('should handle a click on a node with a bound function where the node starts with a number', () => { it('should handle a click on a node with a bound function where the node starts with a number', () => {
cy.get('body').find('g[id="flowchart-1Function-10"]').click(); cy.contains('1Function').parents('.node').click();
cy.get('.created-by-click').should('not.exist');
cy.get('.created-by-click').should('not.exist'); cy.get('.created-by-click').should('not.exist');
}); });
it('should handle a click on a node with a bound url', () => { it('should handle a click on a node with a bound url', () => {
cy.get('body').find('g#flowchart-URL-5').click(); cy.contains('URL1').find('.node').click();
cy.location().should(({ href }) => { cy.location().should(({ href }) => {
expect(href).to.eq('http://localhost:9000/webpackUsage.html'); expect(href).to.eq('http://localhost:9000/webpackUsage.html');
}); });

View File

@@ -9,9 +9,9 @@
<body> <body>
<pre id="FirstLine" class="mermaid"> <pre id="FirstLine" class="mermaid">
graph TB graph TB
Function-->URL Function1-->URL1
click Function clickByFlow "Add a div" click Function1 clickByFlow "Add a div"
click URL "http://localhost:9000/webpackUsage.html" "Visit <strong>mermaid docs</strong>" click URL1 "http://localhost:9000/webpackUsage.html" "Visit <strong>mermaid docs</strong>"
</pre> </pre>
<pre id="FirstLine" class="mermaid"> <pre id="FirstLine" class="mermaid">
graph TB graph TB

View File

@@ -9,9 +9,9 @@
<body> <body>
<pre id="FirstLine" class="mermaid"> <pre id="FirstLine" class="mermaid">
graph TB graph TB
Function-->URL Function1-->URL1
click Function clickByFlow "Add a div" click Function1 clickByFlow "Add a div"
click URL "http://localhost:9000/webpackUsage.html" "Visit <strong>mermaid docs</strong>" click URL1 "http://localhost:9000/webpackUsage.html" "Visit <strong>mermaid docs</strong>"
</pre> </pre>
<pre id="FirstLine" class="mermaid"> <pre id="FirstLine" class="mermaid">
graph TB graph TB