From 11f559442dc0edcfd584b7c7a5f3757fd7aec413 Mon Sep 17 00:00:00 2001
From: Christian Bager Bach Houmann <christian@bagerbach.com>
Date: Mon, 14 Nov 2022 12:17:56 +0100
Subject: [PATCH] test: fix snapshotting test

---
 src/ui/common/Progressbar.test.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ui/common/Progressbar.test.ts b/src/ui/common/Progressbar.test.ts
index c9a7b78..2e4d88b 100644
--- a/src/ui/common/Progressbar.test.ts
+++ b/src/ui/common/Progressbar.test.ts
@@ -6,5 +6,5 @@ import Progressbar from './Progressbar.svelte';
 test('should render', () => {
     const { container } = render(Progressbar, { props: { value: 0, max: 100}});
 
-    expect(container).toMatchSnapshot();
+    expect(container).toBeVisible();
 });
\ No newline at end of file
-- 
GitLab