about summary refs log tree commit diff
path: root/nixos
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
parent548f950b3c89c085843114020c0dc1ed85cbc19c (diff)
downloadnixlib-053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b.tar
nixlib-053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b.tar.gz
nixlib-053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b.tar.bz2
nixlib-053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b.tar.lz
nixlib-053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b.tar.xz
nixlib-053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b.tar.zst
nixlib-053ecedfe0b6b7dcbeb9d60dfb74e8741987bc2b.zip
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')
-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 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
+    ];
+  };
 }