mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-09 17:52:32 +08: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/);
|
|
}
|
|
});
|
|
});
|