mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			300 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			300 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import attributeParser from '../src/public/app/services/attribute_parser.js';
 | |
| import {describe, it, expect, execute} from './mini_test.js';
 | |
| 
 | |
| describe("Lexer fulltext", () => {
 | |
|     it("simple label", () => {
 | |
|         expect(attributeParser.lexer("#label")).toEqual(["#label"]);
 | |
|     });
 | |
| });
 | |
| 
 | |
| execute();
 |