From dfd0b3d0182c77bca816fe73a93e1816df15072b Mon Sep 17 00:00:00 2001 From: Sebastian Markgraf Date: Mon, 19 Feb 2024 14:52:09 +0100 Subject: [PATCH] fix: update snapshot --- .../__snapshots__/common.test.tsx.snap | 237 +++++++++++++++--- src/__tests__/common.test.tsx | 2 +- 2 files changed, 204 insertions(+), 35 deletions(-) diff --git a/src/__tests__/__snapshots__/common.test.tsx.snap b/src/__tests__/__snapshots__/common.test.tsx.snap index 3effb85..c634a21 100644 --- a/src/__tests__/__snapshots__/common.test.tsx.snap +++ b/src/__tests__/__snapshots__/common.test.tsx.snap @@ -102,7 +102,7 @@ exports[`COMMON TESTS should render with default options 1`] = ` } > - February + March @@ -468,6 +468,15 @@ exports[`COMMON TESTS should render with default options 1`] = ` } } /> + + + + + + 30 + + + + + + + + + 31 + + + + diff --git a/src/__tests__/common.test.tsx b/src/__tests__/common.test.tsx index 2b4f7b6..8aecc70 100644 --- a/src/__tests__/common.test.tsx +++ b/src/__tests__/common.test.tsx @@ -4,7 +4,7 @@ import DateTimePicker from '../DateTimePicker'; describe('COMMON TESTS', () => { test('should render with default options', () => { - render(); + render(); expect(screen.toJSON()).toMatchSnapshot(); }); });