Commit 25753208 authored by Haylin Moore's avatar Haylin Moore
Browse files

nixosTests.libresprite: improve test consistency

The larger font and shorter test word is making the test far more frequently locally and should stop the hour long runs on hydra
parent 0dc9f125
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -23,10 +23,10 @@

  testScript = ''
    machine.wait_for_x()
    machine.succeed("convert -font DejaVu-Sans +antialias label:'IT WORKS' image.png")
    machine.succeed("convert -font DejaVu-Sans -pointsize 48 +antialias label:'WORKS' image.png")
    machine.execute("libresprite image.png >&2 &")
    machine.wait_for_window("LibreSprite ${pkgs.libresprite.version}-dev")
    machine.wait_for_text("IT WORKS")
    machine.wait_for_text("WORKS")
    machine.screenshot("screen")
  '';
}