1{ 2 name = "Test that basic tests work when busybox is installed"; 3 4 nodes = { 5 machine = ({ pkgs, ... }: { 6 environment.systemPackages = [ 7 pkgs.busybox 8 ]; 9 }); 10 }; 11 12 testScript = '' 13 start_all() 14 machine.wait_for_unit("multi-user.target") 15 ''; 16}