From 3c2dd40f9553cc60c4f0e9d1381957fcf8205360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AE=80=E9=9D=99=E5=87=A1?= <30424139+wtto00@users.noreply.github.com> Date: Fri, 22 Sep 2023 02:22:31 +0800 Subject: [PATCH] test: add timeout --- spec/emulatorAVD.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/emulatorAVD.test.ts b/spec/emulatorAVD.test.ts index ab82c3b..15cead6 100644 --- a/spec/emulatorAVD.test.ts +++ b/spec/emulatorAVD.test.ts @@ -11,7 +11,7 @@ describe('emulator AVD', () => { const res = await android.hasAVD(avdName); expect(res).toBe(true); await android.avdmanager(`delete avd --name ${avdName}`); - }, 10000); + }, 600000); test('create an existing AVD', async () => { const avds = await android.listAVDs();