tests: Remove hyprland

Might have been too large for the CI.
This commit is contained in:
Donovan Glover 2024-05-12 21:59:05 -04:00
parent aa32d93576
commit d1f759441a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,18 +0,0 @@
# TODO: Write test to ensure that Hyprland starts with basic config
let
inherit (builtins) attrValues;
in
(import ../lib/test.nix) {
name = "hyprland";
nodes.machine = { nix-config, ... }: {
imports = attrValues {
inherit (nix-config.nixosModules) system desktop;
};
};
testScript = /* python */ ''
output = machine.succeed("echo 'Hello world'")
assert "Hello world" in output
'';
}