mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 03:29:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			288 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			288 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import themeDefinitions from "./themes.js";
 | |
| import { describe, expect, it } from "vitest";
 | |
| 
 | |
| describe("Themes", () => {
 | |
|     it("all IDs don't contain spaces", () => {
 | |
|         for (const id of Object.keys(themeDefinitions)) {
 | |
|             expect(id).not.toMatch(/\s/);
 | |
|         }
 | |
|     });
 | |
| });
 | 
