mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 12:54:08 +01:00 
			
		
		
		
	Updated test
This commit is contained in:
		@@ -358,7 +358,7 @@ describe('State diagram', () => {
 | 
			
		||||
        expect(svg).to.have.attr('width', '100%');
 | 
			
		||||
        expect(svg).to.have.attr('height');
 | 
			
		||||
        const height = parseFloat(svg.attr('height'));
 | 
			
		||||
        expect(height).to.eq(171);
 | 
			
		||||
        expect(height).to.be.within(139,141);
 | 
			
		||||
        const style = svg.attr('style');
 | 
			
		||||
        expect(style).to.match(/^max-width: [\d.]+px;$/);
 | 
			
		||||
        const maxWidthValue = parseFloat(style.match(/[\d.]+/g).join(''));
 | 
			
		||||
@@ -379,7 +379,7 @@ describe('State diagram', () => {
 | 
			
		||||
      .should((svg) => {
 | 
			
		||||
        const height = parseFloat(svg.attr('height'));
 | 
			
		||||
        const width = parseFloat(svg.attr('width'));
 | 
			
		||||
        expect(height).to.eq(171);
 | 
			
		||||
        expect(height).to.be.within(139,141);
 | 
			
		||||
        // use within because the absolute value can be slightly different depending on the environment ±5%
 | 
			
		||||
        expect(width).to.be.within(112 * .95, 112 * 1.05);
 | 
			
		||||
        expect(svg).to.not.have.attr('style');
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user