Skip to content

Commit

Permalink
espanso: add wayland test
Browse files Browse the repository at this point in the history
Signed-off-by: phanirithvij <[email protected]>
  • Loading branch information
phanirithvij committed Oct 21, 2024
1 parent 02057ba commit 60d6efe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
5 changes: 3 additions & 2 deletions tests/modules/services/espanso/basic-configuration.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ ... }:
espansoExtraArgs:
{ config, ... }:

{
services.espanso = {
Expand Down Expand Up @@ -36,7 +37,7 @@
];
};
};
};
} // espansoExtraArgs;

test.stubs.espanso = { };

Expand Down
12 changes: 11 additions & 1 deletion tests/modules/services/espanso/default.nix
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
{ espanso-basic-configuration = ./basic-configuration.nix; }
{
espanso-basic-configuration = import ./basic-configuration.nix { };
espanso-basic-configuration-wayland = import ./basic-configuration.nix {
waylandSupport = true;
x11Support = false;
};
espanso-basic-configuration-x11 = import ./basic-configuration.nix {
waylandSupport = false;
x11Support = true;
};
}

0 comments on commit 60d6efe

Please sign in to comment.