Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix_588 #766

Merged
merged 2 commits into from
Aug 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test fix
Kostiantyn committed Jun 30, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit e7866abf465ee1088e5b0a589c670a7026d89b8e
4 changes: 2 additions & 2 deletions src/components/Posts/PostInfo/__tests__/PostInfo.test.tsx
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ describe('PostInfo tests', () => {
name: 'Стаття',
},
publishedAt: '05.10.2021',
realViews: 9,
displayViews: 9,
},
};
});
@@ -122,7 +122,7 @@ describe('PostInfo tests', () => {
});

it('should Skeleton be visible', () => {
delete mocks.info.realViews;
delete mocks.info.displayViews;

const { asFragment } = render(<PostInfo info={mocks.info} />);