-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathuseFavicon.test.tsx
57 lines (44 loc) · 1.94 KB
/
useFavicon.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { renderHook } from '@testing-library/react-hooks';
import useFavicon from '../src/useFavicon';
afterEach(() => {
const favicon = document.querySelector("link[rel*='icon']");
if (favicon) {
favicon.remove();
}
});
describe('useFavicon', () => {
it('should be defined', () => {
expect(useFavicon).toBeDefined();
});
it('should create a HTMLLinkElement', () => {
const faviconBeforeHook = document.querySelector("link[rel*='icon']");
expect(faviconBeforeHook).toBe(null);
renderHook(() => useFavicon('My-favicon'));
const faviconAfterHook = document.querySelector("link[rel*='icon']");
expect(faviconAfterHook).toBeInstanceOf(HTMLLinkElement);
});
it('should set the elements type to "image/x-icon"', () => {
renderHook(() => useFavicon('My-favicon'));
const favicon = document.querySelector("link[rel*='icon']") as HTMLLinkElement;
expect(favicon.type).toBe('image/x-icon');
});
it('should set the elements rel to "shortcut icon"', () => {
renderHook(() => useFavicon('My-favicon'));
const favicon = document.querySelector("link[rel*='icon']") as HTMLLinkElement;
expect(favicon.rel).toBe('shortcut icon');
});
it('should set the elements href to the provided string', () => {
renderHook(() => useFavicon('https://github.com/streamich/react-use'));
const favicon = document.querySelector("link[rel*='icon']") as HTMLLinkElement;
expect(favicon.href).toBe('https://github.com/streamich/react-use');
});
it('should update an existing favicon', () => {
const hook = renderHook((props) => useFavicon(props), {
initialProps: 'https://github.com/streamich/react-use',
});
const favicon = document.querySelector("link[rel*='icon']") as HTMLLinkElement;
expect(favicon.href).toBe('https://github.com/streamich/react-use');
hook.rerender('https://en.wikipedia.org/wiki/Favicon');
expect(favicon.href).toBe('https://en.wikipedia.org/wiki/Favicon');
});
});