diff --git a/memory-testing/test-util.mjs b/memory-testing/test-util.mjs index 8e120e5d..d4436ded 100644 --- a/memory-testing/test-util.mjs +++ b/memory-testing/test-util.mjs @@ -74,6 +74,10 @@ export async function createSuite(testFile, maxMemoryUsage) { shouldAssertMemoryUsage = true - await container.stop() - await container.remove() + try { + await container.stop() + await container.remove() + } catch (e) { + console.error(e) + } }