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