diff --git a/pkgs/servers/search/meilisearch/default.nix b/pkgs/servers/search/meilisearch/default.nix index 7b83e1eb8e0a..9dca908a0773 100644 --- a/pkgs/servers/search/meilisearch/default.nix +++ b/pkgs/servers/search/meilisearch/default.nix @@ -23,11 +23,9 @@ rustPlatform.buildRustPackage { # Default features include mini dashboard which downloads something from the internet. buildNoDefaultFeatures = true; buildInputs = lib.optionals stdenv.isDarwin [ Security DiskArbitration Foundation ]; - # Test fail at the moment. - # > Test "create index" failed with error: "index wasn't created" - # passthru.tests = { - # meilisearch = nixosTests.meilisearch; - # }; + passthru.tests = { + meilisearch = nixosTests.meilisearch; + }; # Tests will try to compile with mini-dashboard features which downloads something from the internet. doCheck = false;