From 0287a62b09048398a89672e8992112a00a13f081 Mon Sep 17 00:00:00 2001 From: "Kent C. Dodds" Date: Fri, 27 Sep 2024 10:38:26 -0600 Subject: [PATCH] =?UTF-8?q?add=20alfred=20=F0=9F=9A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../02.side-effects/02.solution.cleanup/memory-leak.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/02.side-effects/02.solution.cleanup/memory-leak.test.ts b/exercises/02.side-effects/02.solution.cleanup/memory-leak.test.ts index 57a590d41..3caa8484a 100644 --- a/exercises/02.side-effects/02.solution.cleanup/memory-leak.test.ts +++ b/exercises/02.side-effects/02.solution.cleanup/memory-leak.test.ts @@ -57,7 +57,7 @@ if (performance.memory) { ).toFixed(2) expect( Number(percentageChange), - `The memory usage increased from ${initialMemoryMB} to ${finalMemoryMB} (a ${percentageChange}% increase)`, + `🚨 The memory usage increased from ${initialMemoryMB} to ${finalMemoryMB} (a ${percentageChange}% increase)`, ).toBeLessThan(110) }, )