-
Notifications
You must be signed in to change notification settings - Fork 62
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
[New] Added test cases for pages export list #326
[New] Added test cases for pages export list #326
Conversation
0211087
to
a407855
Compare
}); | ||
|
||
it("should render <PageContent>", () => { | ||
expect(component.find(PageContent)).to.have.lengthOf(1); | ||
mountedComponent(<ExportList />, {}, initialState); | ||
expect(screen.getByText(/messages.record_list.rows_per_page/i)).toBeInTheDocument(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PageContent
component is not related to pagination. I think you will need a test-id.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this test removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
348dfcf
to
46dd49e
Compare
|
||
it("should render <IndexTable>", () => { | ||
mountedComponent(<ExportList />, {}, initialState); | ||
expect(screen.getByText(/messages.record_list.rows_per_page/i)).toBeInTheDocument(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need something else to key off of like role table or something
e393fff
into
primeroIMS:develop_react_upgrade
Added test cases for pages export list component.