From e6d79a4f1037620acdf9f07106028189b55fe07f Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 15 Feb 2022 11:25:59 -0700 Subject: [PATCH] fix(docker): add missing dependency to the docker 1.19 (#12124) The `libxtst6` is required in both amd64 and arm64. Fixes #12075 --- packages/playwright-core/src/utils/nativeDeps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright-core/src/utils/nativeDeps.ts b/packages/playwright-core/src/utils/nativeDeps.ts index ea59cca8d0..d128f75403 100644 --- a/packages/playwright-core/src/utils/nativeDeps.ts +++ b/packages/playwright-core/src/utils/nativeDeps.ts @@ -294,6 +294,7 @@ export const deps: any = { 'libxi6', 'libxrender1', 'libxt6', + 'libxtst6' ], webkit: [ 'gstreamer1.0-libav', @@ -646,7 +647,6 @@ deps['ubuntu20.04-arm64'] = { chromium: [...deps['ubuntu20.04'].chromium], firefox: [ ...deps['ubuntu20.04'].firefox, - 'libxtst6' ], webkit: [ ...deps['ubuntu20.04'].webkit,