mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +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/);
 | 
						|
        }
 | 
						|
    });
 | 
						|
});
 |