summaryrefslogtreecommitdiffstats
path: root/nixos/tests/chromadb.nix
blob: a1500b0718ee8e124a212df278700f6fe4c53ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  name = "chromadb";
  meta.maintainers = [ ];

  nodes = {
    machine = {
      services.chromadb = {
        enable = true;
      };
    };
  };

  testScript = ''
    machine.start()
    machine.wait_for_unit("chromadb.service")
    machine.wait_for_open_port(8000)
  '';
}