From 9a714393431ad95452b8b52097f93baea643174a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 14 Dec 2020 05:43:08 -0600 Subject: [PATCH] nixos/plasma5: test that KDED runs at startup --- nixos/tests/plasma5.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/plasma5.nix b/nixos/tests/plasma5.nix index 5a603f8cbfb..7b17321e2e1 100644 --- a/nixos/tests/plasma5.nix +++ b/nixos/tests/plasma5.nix @@ -35,6 +35,9 @@ import ./make-test-python.nix ({ pkgs, ...} : machine.wait_until_succeeds("pgrep plasmashell") machine.wait_for_window("^Desktop ") + with subtest("Check that KDED is running"): + machine.succeed("pgrep kded5") + with subtest("Check that logging in has given the user ownership of devices"): machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")