From fd754c7d1e1aebcb92747070aa7c2876147965f9 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Mon, 11 Sep 2023 16:42:36 -0400 Subject: [PATCH] not needed --- e2e/flake-module.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/e2e/flake-module.nix b/e2e/flake-module.nix index 87f30609..4f8cc33b 100644 --- a/e2e/flake-module.nix +++ b/e2e/flake-module.nix @@ -5,7 +5,6 @@ process-compose.e2e-playwright-test = let TEST_PORT = "5000"; - PLAYWRIGHT_BROWSERS_PATH = "${pkgs.playwright-driver.browsers}"; in { tui = false; @@ -26,9 +25,9 @@ }; command = pkgs.writeShellApplication { name = "e2e-playwright"; - runtimeInputs = with pkgs; [ nodejs playwright-test PLAYWRIGHT_BROWSERS_PATH ]; + runtimeInputs = with pkgs; [ nodejs playwright-test ]; text = '' - cd e2e-playwright + cd e2e playwright test --project chromium ''; };