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 16, 2024
1 parent ef0586d commit 8f4e534
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/modules/services/espanso/basic-configuration.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
espansoExtraArgs:
{ config, ... }:

{
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 8f4e534

Please sign in to comment.