mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-30 19:19:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			243 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			243 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { trimIndentation } from "./utils.js";
 | |
| 
 | |
| describe("Utils", () => {
 | |
|     it("trims indentation", () => {
 | |
|         expect(trimIndentation`\
 | |
|             Hello
 | |
|                 world
 | |
|             123`).toBe(`\
 | |
| Hello
 | |
|     world
 | |
| 123`);
 | |
|     });
 | |
| });
 | 
