-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4c16eb
commit 8ea0b8c
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import React from 'react' | ||
import { render, screen } from '@testing-library/react' | ||
import { ReloadInfo } from './index' | ||
|
||
describe('ReloadInfo', function () { | ||
beforeAll(function () { | ||
localStorage.removeItem('showReloadInfo') | ||
}) | ||
|
||
test('renders correctly', function () { | ||
const { container } = render(<ReloadInfo />) | ||
|
||
expect( | ||
screen.getByText( | ||
'The messages update automatically. There is no need to reload the entire page.' | ||
) | ||
).toBeVisible() | ||
|
||
const close = container.querySelector('i.close') as HTMLElement | ||
close.click() | ||
|
||
expect(localStorage.getItem('showReloadInfo')).toBe('0') | ||
}) | ||
|
||
test('not renders if dismissed', function () { | ||
localStorage.setItem('showReloadInfo', '0') | ||
const { container } = render(<ReloadInfo />) | ||
|
||
expect( | ||
screen.getByText( | ||
'The messages update automatically. There is no need to reload the entire page.' | ||
) | ||
).toBeInTheDocument() | ||
expect(container.firstElementChild).toHaveClass('hidden') | ||
}) | ||
}) |