shadow: move test configuration to a directory

This commit is contained in:
João Santos Reis
2026-05-06 10:08:45 +01:00
parent d83e793823
commit 963c03f40c
3 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1539,7 +1539,7 @@ in
sftpgo = runTest ./sftpgo.nix;
sfxr-qt = runTest ./sfxr-qt.nix;
sgt-puzzles = runTest ./sgt-puzzles.nix;
shadow = runTest ./shadow.nix;
shadow = import ./shadow { inherit runTest; };
shadowsocks = handleTest ./shadowsocks { };
shadps4 = runTest ./shadps4.nix;
sharkey = runTest ./web-apps/sharkey.nix;
+4
View File
@@ -0,0 +1,4 @@
{ runTest }:
{
login = runTest ./login.nix;
}