test: fix testing-library/render-result-naming-convention
This commit is contained in:
parent
6713d279ef
commit
d1cd05aca7
1 changed files with 3 additions and 3 deletions
|
|
@ -689,9 +689,9 @@ describe('Click through all steps', () => {
|
|||
beforeEach(async () => {
|
||||
window.HTMLElement.prototype.scrollTo = function() {};
|
||||
|
||||
const rendered = renderWithReduxRouter(<CreateImageWizard />);
|
||||
history = rendered.history;
|
||||
store = rendered.reduxStore;
|
||||
const view = renderWithReduxRouter(<CreateImageWizard />);
|
||||
history = view.history;
|
||||
store = view.reduxStore;
|
||||
});
|
||||
|
||||
test('with valid values', async () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue