-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathwebkit.test.tsx
41 lines (35 loc) · 1.05 KB
/
webkit.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
import React from 'react';
import { render } from '@testing-library/react';
import Portal from '../src';
jest.mock('../src/util', () => {
const origin = jest.requireActual('../src/util');
return {
...origin,
isBodyOverflowing: () => true,
};
});
// Revert `useLayoutEffect` back to real one since we should keep order for test
jest.mock('@rc-component/util/lib/hooks/useLayoutEffect', () => {
const origin = jest.requireActual('react');
return origin.useLayoutEffect;
});
// Revert `useLayoutEffect` back to real one since we should keep order for test
jest.mock('@rc-component/util/lib/getScrollBarSize', () => {
const origin = jest.requireActual('@rc-component/util/lib/getScrollBarSize');
return {
...origin,
getTargetScrollBarSize: () => ({ width: 93, height: 1128 }),
};
});
describe('::-webkit-scrollbar', () => {
it('support ::-webkit-scrollbar', () => {
render(
<Portal open autoLock>
<p />
</Portal>,
);
expect(document.body).toHaveStyle({
width: 'calc(100% - 93px)',
});
});
});