This commit is contained in:
2026-02-27 15:26:50 -05:00
commit ed22d77741
11 changed files with 1992 additions and 0 deletions

13
tests/default.nix Normal file
View File

@@ -0,0 +1,13 @@
{
pkgs,
lib,
self,
}:
{
integration = import ./integration.nix { inherit pkgs lib self; };
partial-config = import ./partial-config.nix { inherit pkgs lib self; };
multiple-clients = import ./multiple-clients.nix { inherit pkgs lib self; };
bazarr = import ./bazarr.nix { inherit pkgs lib self; };
error-handling = import ./error-handling.nix { inherit pkgs lib self; };
edge-cases = import ./edge-cases.nix { inherit pkgs lib self; };
}