eww: added tests

This commit is contained in:
Christoffer Hald Christensen 2025-02-12 13:52:35 +01:00 committed by Austin Horstman
parent f8729b11ee
commit 1f6fa87808
5 changed files with 79 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ ... }: {
config = {
programs.eww = {
enable = true;
configDir = ./config-dir;
};
nmt.script = ''
yuckDir=home-files/.config/eww
assertFileExists $yuckDir/eww.yuck
assertFileExists $yuckDir/eww.scss
'';
};
}