about summary refs log tree commit diff
path: root/nixos/tests/installed-tests
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-03-22 08:39:30 +0100
committerJan Tojnar <jtojnar@gmail.com>2022-03-25 15:02:49 +0100
commit053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b (patch)
tree1c00e5b8f4e64c18ed363c38e6141792b09fc544 /nixos/tests/installed-tests
parent548f950b3c89c085843114020c0dc1ed85cbc19c (diff)
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.
Diffstat (limited to 'nixos/tests/installed-tests')
-rw-r--r--nixos/tests/installed-tests/gjs.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/tests/installed-tests/gjs.nix b/nixos/tests/installed-tests/gjs.nix
index 1656e9de171b7..d12487cba2499 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
+    ];
+  };
 }