mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-30 19:19:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			592 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			592 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import handleParens from "../../src/services/search/services/handle_parens.js";
 | |
| import type { TokenStructure } from "../../src/services/search/services/types.js";
 | |
| 
 | |
| describe("Parens handler", () => {
 | |
|     it("handles parens", () => {
 | |
|         const input = ["(", "hello", ")", "and", "(", "(", "pick", "one", ")", "and", "another", ")"].map((token) => ({ token }));
 | |
| 
 | |
|         const actual: TokenStructure = [[{ token: "hello" }], { token: "and" }, [[{ token: "pick" }, { token: "one" }], { token: "and" }, { token: "another" }]];
 | |
| 
 | |
|         expect(handleParens(input)).toEqual(actual);
 | |
|     });
 | |
| });
 | 
