From 9996cd5ae36dbcb9b41b97be914ab117a32b00a9 Mon Sep 17 00:00:00 2001 From: "Joshua A. Horton" Date: Tue, 30 Apr 2024 09:53:35 +0700 Subject: [PATCH] chore(web): configure now includes setup of testing environment --- resources/shellHelperFunctions.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/shellHelperFunctions.sh b/resources/shellHelperFunctions.sh index 3a05faaa8b..dbeecf5326 100755 --- a/resources/shellHelperFunctions.sh +++ b/resources/shellHelperFunctions.sh @@ -201,5 +201,9 @@ verify_npm_setup() { pushd "$KEYMAN_ROOT" > /dev/null npm ci + + # Configure Web browser-engine testing environments. As is, this should only + # make changes when we update the dependency, even on our CI build agents. + playwright install popd > /dev/null }