mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 12:54:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			275 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			275 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* eslint-env jest */
 | 
						|
describe('Sequencediagram', () => {
 | 
						|
  it('should render a simple sequence diagrams', () => {
 | 
						|
    const url = 'http://localhost:9000/webpackUsage.html';
 | 
						|
 | 
						|
    cy.visit(url);
 | 
						|
    cy.get('body')
 | 
						|
      .find('svg')
 | 
						|
      .should('have.length', 2);
 | 
						|
  });
 | 
						|
});
 |