Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
salvoravida committed Sep 22, 2021
1 parent aa3de08 commit 571d286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/reach.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Reach Router', () => {
});
const { container } = render(<App />);

expect(container.querySelector('p')?.innerHTML).toEqual('Home');
expect(container.querySelector('p')?.innerHTML).toEqual('Home /');
act(() => {
fakeHistory.push('/dashboard');
});
Expand Down Expand Up @@ -73,7 +73,7 @@ describe('Reach Router', () => {
});
const { container } = render(<App />);

expect(container.querySelector('p')?.innerHTML).toEqual('Home');
expect(container.querySelector('p')?.innerHTML).toEqual('Home /');
act(() => {
fakeHistory.push('/dashboard');
});
Expand Down

0 comments on commit 571d286

Please sign in to comment.