mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 12:54:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			324 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			324 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* eslint-env jest */
 | 
						|
import { imgSnapshotTest } from '../../helpers/util.js';
 | 
						|
 | 
						|
describe('Pie Chart', () => {
 | 
						|
  it('should render a simple pie diagram', () => {
 | 
						|
    imgSnapshotTest(
 | 
						|
      `
 | 
						|
    pie title Sports in Sweden
 | 
						|
       "Bandy" : 40
 | 
						|
       "Ice-Hockey" : 80
 | 
						|
       "Football" : 90
 | 
						|
      `,
 | 
						|
      {}
 | 
						|
    );
 | 
						|
  });
 | 
						|
});
 |