Skip to content

Commit

Permalink
playwright-test: init at 1.31.1
Browse files Browse the repository at this point in the history
Adds "playwright test" command.
  • Loading branch information
teto committed May 4, 2023
1 parent f73acb5 commit 6a8cb45
Show file tree
Hide file tree
Showing 6 changed files with 796 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pkgs/development/web/playwright-test/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file has been generated by node2nix 1.11.1. Do not edit!

{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:

let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit nodeEnv;
}
Loading

0 comments on commit 6a8cb45

Please sign in to comment.