This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/nix/tests/test-bundle-starts.nix

17 lines
264 B
Nix

self:
{ config, lib, pkgs, ... }:
{
name = "test-bundle-starts";
nodes.machine = {
imports = [ self.nixosModules.default ];
services.spacebarchat-server.enable = true;
};
testScript = ''
machine.wait_for_unit("spacebarchat-server")
'';
}