From eaab6406cddffca6406cf4daf9e98402dc53fd76 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 8 Apr 2022 02:14:34 +0200 Subject: [PATCH] chore: skip android driver omitDriverInstall test (#13410) --- tests/android/device.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/android/device.spec.ts b/tests/android/device.spec.ts index ad4d7636bd..6a2da61cf9 100644 --- a/tests/android/device.spec.ts +++ b/tests/android/device.spec.ts @@ -60,6 +60,7 @@ test('androidDevice.fill', async function({ androidDevice }) { }); test('androidDevice.options.omitDriverInstall', async function({ playwright }) { + test.skip(true, 'Android._driverPromise gets cached and is in a closed state. Its stored inside the androidDevice worker fixture.'); const devices = await playwright._android.devices({ omitDriverInstall: true }); const androidDevice = devices[0];