diff --git a/tests/hyprland.nix b/tests/hyprland.nix deleted file mode 100644 index 98c956eb..00000000 --- a/tests/hyprland.nix +++ /dev/null @@ -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 - ''; -}