nixosTests.xfce: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-14 23:35:14 +01:00
parent 93e131345f
commit f7a4d10a08
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 61 additions and 64 deletions

View file

@ -1287,7 +1287,7 @@ in {
wstunnel = runTest ./wstunnel.nix;
xandikos = handleTest ./xandikos.nix {};
xautolock = handleTest ./xautolock.nix {};
xfce = handleTest ./xfce.nix {};
xfce = runTest ./xfce.nix;
xfce-wayland = runTest ./xfce-wayland.nix;
xmonad = runTest ./xmonad.nix;
xmonad-xdg-autostart = runTest ./xmonad-xdg-autostart.nix;

View file

@ -1,6 +1,4 @@
import ./make-test-python.nix (
{ pkgs, ... }:
{
{
name = "xfce";
nodes.machine =
@ -72,5 +70,4 @@ import ./make-test-python.nix (
machine.sleep(10)
machine.screenshot("screen")
'';
}
)
}