nixos/tests/thelounge: fix eval by disabling theme test (#412199)

This commit is contained in:
Peder Bergebakken Sundt 2025-06-06 01:51:20 +02:00 committed by GitHub
commit ba7de1c9d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,8 @@ import ./make-test-python.nix {
{
services.thelounge = {
enable = true;
plugins = [ pkgs.theLoungePlugins.themes.solarized ];
# nodePackages.thelounge-theme-* has been removed
# plugins = [ pkgs.theLoungePlugins.themes.solarized ];
};
};
@ -28,7 +29,7 @@ import ./make-test-python.nix {
machine.wait_for_unit("thelounge.service")
machine.wait_for_open_port(9000)
private.wait_until_succeeds("journalctl -u thelounge.service | grep thelounge-theme-solarized")
# private.wait_until_succeeds("journalctl -u thelounge.service | grep thelounge-theme-solarized")
private.wait_until_succeeds("journalctl -u thelounge.service | grep 'in private mode'")
public.wait_until_succeeds("journalctl -u thelounge.service | grep 'in public mode'")
'';