From 47e4247613b2ede06730dff74b6695760a982535 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 20 Nov 2024 17:13:51 -0500 Subject: [PATCH] tests(neovim): add stylix dependency Also increased the sleep time to ensure that neovim loads before continuing with the test. --- tests/neovim.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/neovim.nix b/tests/neovim.nix index 190fd52d..0ef61f76 100644 --- a/tests/neovim.nix +++ b/tests/neovim.nix @@ -11,6 +11,7 @@ self.inputs.nixpkgs.lib.nixos.runTest { imports = with nix-config.nixosModules; [ shell system + stylix ]; home-manager.sharedModules = with nix-config.homeModules; [ @@ -25,7 +26,7 @@ self.inputs.nixpkgs.lib.nixos.runTest { machine.wait_for_unit("default.target") machine.send_chars("nvim hello.txt\n") - machine.sleep(20) + machine.sleep(30) machine.send_chars("i") machine.sleep(2)