From 2ca639ff64ebd807c8306135e218f24dffee98f6 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Wed, 2 Feb 2022 22:18:13 +0100 Subject: [PATCH] Bump timeout of create-daml-app tests (#12727) changelog_begin changelog_end --- templates/create-daml-app-test-resources/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/create-daml-app-test-resources/index.test.ts b/templates/create-daml-app-test-resources/index.test.ts index 25aaa56b82..9c262b13bd 100644 --- a/templates/create-daml-app-test-resources/index.test.ts +++ b/templates/create-daml-app-test-resources/index.test.ts @@ -165,7 +165,7 @@ test('create and look up user using ledger library', async () => { expect(userContract1).toEqual(userContract2); const users = await ledger.query(User.User); expect(users[0]).toEqual(userContract1); -}); +}, 20_000); // The tests following use the headless browser to interact with the app. // We select the relevant DOM elements using CSS class names that we embedded