summary refs log tree commit diff
path: root/pkgs/development/web/cypress/default.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2023-03-30 13:47:08 +0200
committerRobert Hensing <robert@roberthensing.nl>2023-03-30 13:50:37 +0200
commit479b38649ac031de89b162f4caa31ac5754be19d (patch)
tree65734f283cdb62c36475c36d7664579b27444c5b /pkgs/development/web/cypress/default.nix
parent716892066a140e8ebcfd4041e89900e8d0d91763 (diff)
downloadnixpkgs-479b38649ac031de89b162f4caa31ac5754be19d.tar
nixpkgs-479b38649ac031de89b162f4caa31ac5754be19d.tar.gz
nixpkgs-479b38649ac031de89b162f4caa31ac5754be19d.tar.bz2
nixpkgs-479b38649ac031de89b162f4caa31ac5754be19d.tar.lz
nixpkgs-479b38649ac031de89b162f4caa31ac5754be19d.tar.xz
nixpkgs-479b38649ac031de89b162f4caa31ac5754be19d.tar.zst
nixpkgs-479b38649ac031de89b162f4caa31ac5754be19d.zip
cypress: Remove test
Diffstat (limited to 'pkgs/development/web/cypress/default.nix')
-rw-r--r--pkgs/development/web/cypress/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix
index 9983b206ef9..bc6bf6b7adc 100644
--- a/pkgs/development/web/cypress/default.nix
+++ b/pkgs/development/web/cypress/default.nix
@@ -77,7 +77,12 @@ in stdenv.mkDerivation rec {
     updateScript = ./update.sh;
 
     tests = {
-      example = callPackage ./cypress-example-kitchensink { };
+      # We used to have a test here, but was removed because
+      #  - it broke, and ofborg didn't fail https://github.com/NixOS/ofborg/issues/629
+      #  - it had a large footprint in the repo; prefer RFC 92 or an ugly FOD fetcher?
+      #  - the author switched away from cypress.
+      # To provide a test once more, you may find useful information in
+      # https://github.com/NixOS/nixpkgs/pull/223903
     };
   };