about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt2024-08-18 00:29:43 +0200
committerGitHub2024-08-18 00:29:43 +0200
commite471916645b13adae1401d66d1afb35638576953 (patch)
treeea30c6e0c2c9b89504f29662926bbd8ad28658f0 /pkgs/development/web
parent7a65a0bffd50a96e1e67491f0f3c262aada9a388 (diff)
treewide: passthru nixos test (#334491)
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/mailcatcher/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/web/mailcatcher/default.nix b/pkgs/development/web/mailcatcher/default.nix
index 17d25378d8cd..a6188fec5dbd 100644
--- a/pkgs/development/web/mailcatcher/default.nix
+++ b/pkgs/development/web/mailcatcher/default.nix
@@ -1,4 +1,4 @@
-{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript }:
+{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript, nixosTests }:
 
 bundlerApp {
   pname = "mailcatcher";
@@ -7,6 +7,7 @@ bundlerApp {
   ruby = ruby_3_2;
 
   passthru.updateScript = bundlerUpdateScript "mailcatcher";
+  passthru.tests = { inherit (nixosTests) mailcatcher; };
 
   meta = with lib; {
     description = "SMTP server and web interface to locally test outbound emails";