From cc7090e90b48bb44bf1025039c92b6d4027d9518 Mon Sep 17 00:00:00 2001 From: Alex Anderson <191496+alxndrsn@users.noreply.github.com> Date: Tue, 29 Oct 2024 09:23:09 +0300 Subject: [PATCH] test/encryption: increase end-to-end test timeouts (#1250) Also mark these tests as @slow. * these tests have been seen to time out on CI * these tests time out around 10% of the time on my machine Closes #1249 --- test/integration/other/encryption.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/integration/other/encryption.js b/test/integration/other/encryption.js index b6b5a8f8c..3da709ee2 100644 --- a/test/integration/other/encryption.js +++ b/test/integration/other/encryption.js @@ -150,7 +150,9 @@ describe('managed encryption', () => { })); }); - describe('end-to-end', () => { + describe('end-to-end @slow', function() { + this.timeout(5000); + const { extractPubkey, extractVersion, encryptInstance, sendEncrypted, internal } = require(appRoot + '/test/util/crypto-odk'); describe('odk encryption simulation', () => {