hotFix_vnJsonValue_showHours #1689

Merged
alexm merged 8 commits from hotFix_vnJsonValue_showHours into master 2025-04-08 13:01:00 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 3349aebdde - Show all commits

View File

@ -65,7 +65,7 @@ describe('VnJsonValue', () => {
const date = new Date('2023-01-01');
const wrapper = buildComponent({ value: date });
const span = wrapper.find('span');
expect(span.text()).toBe('2023-01-01');
expect(span.text()).toBe('01/01/2023, 01:00:00');
expect(span.classes()).toContain('json-object');
});