nixosTests.homepage-dashboard: migrate to runTest

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-04 21:16:05 +02:00
parent 1cfe5a5d42
commit 8fbb437033
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 22 additions and 24 deletions

View file

@ -584,7 +584,7 @@ in
herbstluftwm = handleTest ./herbstluftwm.nix { };
homebox = handleTest ./homebox.nix { };
homer = handleTest ./homer { };
homepage-dashboard = handleTest ./homepage-dashboard.nix { };
homepage-dashboard = runTest ./homepage-dashboard.nix;
honk = runTest ./honk.nix;
installed-tests = pkgs.recurseIntoAttrs (handleTest ./installed-tests { });
invidious = handleTest ./invidious.nix { };

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ lib, ... }:
{
name = "homepage-dashboard";
@ -25,4 +24,3 @@ import ./make-test-python.nix (
assert "test title rodUsEagid" in page, "Custom title not found"
'';
}
)