From 053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Tue, 22 Mar 2022 08:39:30 +0100 Subject: [PATCH] gjs.tests: fix warning The tests complained: /nix/store/nm3nf5y4hzgmy00lw5s6ls68j38y84y0-gjs-1.72.0-installedTests/libexec/installed-tests/gjs/scripts/testCommandLineModules.sh: line 90: gjs-console: command not found But they still passed. --- nixos/tests/installed-tests/gjs.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/tests/installed-tests/gjs.nix b/nixos/tests/installed-tests/gjs.nix index 1656e9de171b..d12487cba249 100644 --- a/nixos/tests/installed-tests/gjs.nix +++ b/nixos/tests/installed-tests/gjs.nix @@ -3,4 +3,10 @@ makeInstalledTest { tested = pkgs.gjs; withX11 = true; + + testConfig = { + environment.systemPackages = [ + pkgs.gjs + ]; + }; }